diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cb7927..fe36ed7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # OpenStudio EE Gem +## Version 0.2.1 +* Update openstudio-extension to 0.2.5 +* Adds the following to lib/measures: + * ImproveFanTotalEfficiencyByPercentage + * ReplaceFanTotalEfficiency + * add_apszhp_to_each_zone + * add_energy_recovery_ventilator + * improve_simple_glazing_by_percentage + * reduce_water_use_by_percentage + * replace_hvac_with_gshp_and_doas + * replace_simple_glazing + * set_boiler_thermal_efficiency + * set_water_heater_efficiency_heat_lossand_peak_water_flow_rate + * tenant_star_internal_loads + * vr_fwith_doas + ## Version 0.2.0 * Support for OpenStudio 3.0 diff --git a/Rakefile b/Rakefile index 10f9edc..8282834 100644 --- a/Rakefile +++ b/Rakefile @@ -1,3 +1,5 @@ +# frozen_string_literal: true + # ******************************************************************************* # OpenStudio(R), Copyright (c) 2008-2020, Alliance for Sustainable Energy, LLC. # All rights reserved. diff --git a/lib/measures/AddOverhangsByProjectionFactor/tests/AddOverhangsByProjectionFactor_Test.rb b/lib/measures/AddOverhangsByProjectionFactor/tests/AddOverhangsByProjectionFactor_Test.rb index c8d2952..213c7a5 100644 --- a/lib/measures/AddOverhangsByProjectionFactor/tests/AddOverhangsByProjectionFactor_Test.rb +++ b/lib/measures/AddOverhangsByProjectionFactor/tests/AddOverhangsByProjectionFactor_Test.rb @@ -92,7 +92,7 @@ def test_AddOverhangsByProjectionFactor_good model = model.get model.getSpaces.each do |space| - if space.name.get =~ Regexp.new(/Space 104/) + if space.name.get.match?(Regexp.new(/Space 104/)) # should be two space shading groups assert_equal(2, space.shadingSurfaceGroups.size) else diff --git a/lib/measures/ImproveFanTotalEfficiencybyPercentage/measure.rb b/lib/measures/ImproveFanTotalEfficiencybyPercentage/measure.rb new file mode 100644 index 0000000..b08e1ea --- /dev/null +++ b/lib/measures/ImproveFanTotalEfficiencybyPercentage/measure.rb @@ -0,0 +1,333 @@ +# frozen_string_literal: true + +# start the measure +class ImproveFanTotalEfficiencybyPercentage < OpenStudio::Ruleset::ModelUserScript + # define the name that a user will see, this method may be deprecated as + # the display name in PAT comes from the name field in measure.xml + def name + return 'Improve Fan Total Efficiency by Percentage' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # populate choice argument for constructions that are applied to surfaces in the model + loop_handles = OpenStudio::StringVector.new + loop_display_names = OpenStudio::StringVector.new + + # putting air loops and names into hash + loop_args = model.getAirLoopHVACs + loop_args_hash = {} + loop_args.each do |loop_arg| + loop_args_hash[loop_arg.name.to_s] = loop_arg + end + + # looping through sorted hash of air loops + loop_args_hash.sort.map do |key, value| + show_loop = false + components = value.supplyComponents + components.each do |component| + if !component.to_FanConstantVolume.empty? + show_loop = true + end + if !component.to_FanVariableVolume.empty? + show_loop = true + end + if !component.to_FanOnOff.empty? + show_loop = true + end + end + + # if loop as object of correct type then add to hash. + if show_loop == true + loop_handles << value.handle.to_s + loop_display_names << key + end + end + + # add building to string vector with air loops + building = model.getBuilding + loop_handles << building.handle.to_s + loop_display_names << '*All Air Loops*' + + # make an argument for air loops + object = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('object', loop_handles, loop_display_names, true) + object.setDisplayName('Choose an Air Loop to Alter.') + object.setDefaultValue('*All Air Loops*') # if no loop is chosen this will run on all air loops + args << object + + # TODO: - change this to choice list from design document + # make an argument to add new space true/false + motor_eff = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('motor_eff', true) + motor_eff.setDisplayName('Fan Total Efficiency Improvement(%).') + motor_eff.setDefaultValue(3.0) + args << motor_eff + + # bool argument to remove existing costs + remove_costs = OpenStudio::Ruleset::OSArgument.makeBoolArgument('remove_costs', true) + remove_costs.setDisplayName('Remove Baseline Costs From Effected Fans?') + remove_costs.setDefaultValue(false) + args << remove_costs + + # make an argument for material and installation cost + material_cost = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('material_cost', true) + material_cost.setDisplayName('Material and Installation Costs per Motor ($).') + material_cost.setDefaultValue(0.0) + args << material_cost + + # make an argument for demolition cost + demolition_cost = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('demolition_cost', true) + demolition_cost.setDisplayName('Demolition Costs per Motor ($).') + demolition_cost.setDefaultValue(0.0) + args << demolition_cost + + # make an argument for duration in years until costs start + years_until_costs_start = OpenStudio::Ruleset::OSArgument.makeIntegerArgument('years_until_costs_start', true) + years_until_costs_start.setDisplayName('Years Until Costs Start (whole years).') + years_until_costs_start.setDefaultValue(0) + args << years_until_costs_start + + # make an argument to determine if demolition costs should be included in initial construction + demo_cost_initial_const = OpenStudio::Ruleset::OSArgument.makeBoolArgument('demo_cost_initial_const', true) + demo_cost_initial_const.setDisplayName('Demolition Costs Occur During Initial Construction?') + demo_cost_initial_const.setDefaultValue(false) + args << demo_cost_initial_const + + # make an argument for expected life + expected_life = OpenStudio::Ruleset::OSArgument.makeIntegerArgument('expected_life', true) + expected_life.setDisplayName('Expected Life (whole years).') + expected_life.setDefaultValue(20) + args << expected_life + + # make an argument for o&m cost + om_cost = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('om_cost', true) + om_cost.setDisplayName('O & M Costs per Motor ($).') + om_cost.setDefaultValue(0.0) + args << om_cost + + # make an argument for o&m frequency + om_frequency = OpenStudio::Ruleset::OSArgument.makeIntegerArgument('om_frequency', true) + om_frequency.setDisplayName('O & M Frequency (whole years).') + om_frequency.setDefaultValue(1) + args << om_frequency + + return args + end # end the arguments method + + # define what happens when the measure is cop + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # assign the user inputs to variables + object = runner.getOptionalWorkspaceObjectChoiceValue('object', user_arguments, model) # model is passed in because of argument type + motor_eff = runner.getDoubleArgumentValue('motor_eff', user_arguments) + remove_costs = runner.getBoolArgumentValue('remove_costs', user_arguments) + material_cost = runner.getDoubleArgumentValue('material_cost', user_arguments) + demolition_cost = runner.getDoubleArgumentValue('demolition_cost', user_arguments) + years_until_costs_start = runner.getIntegerArgumentValue('years_until_costs_start', user_arguments) + demo_cost_initial_const = runner.getBoolArgumentValue('demo_cost_initial_const', user_arguments) + expected_life = runner.getIntegerArgumentValue('expected_life', user_arguments) + om_cost = runner.getDoubleArgumentValue('om_cost', user_arguments) + om_frequency = runner.getIntegerArgumentValue('om_frequency', user_arguments) + + # check the loop for reasonableness + apply_to_all_loops = false + loop = nil + if object.empty? + handle = runner.getStringArgumentValue('loop', user_arguments) + if handle.empty? + runner.registerError('No loop was chosen.') + else + runner.registerError("The selected loop with handle '#{handle}' was not found in the model. It may have been removed by another measure.") + end + return false + else + if !object.get.to_Loop.empty? + loop = object.get.to_Loop.get + elsif !object.get.to_Building.empty? + apply_to_all_loops = true + else + runner.registerError('Script Error - argument not showing up as loop.') + return false + end + end # end of if loop.empty? + + # check the user_name for reasonableness + if (motor_eff <= 1) || (motor_eff >= 5) + runner.registerWarning('Requested motor efficiency improvement is not between expected values of 1% and 5%') + end + # motor efficiency will be checked motor by motor to see warn if higher than 0.96 and error if not between or equal to 0 and 1 + + # set flags to use later + costs_requested = false + + # set values to use later + yr0_capital_totalCosts_baseline = 0 + yr0_capital_totalCosts_proposed = 0 + + # If demo_cost_initial_const is true then will be applied once in the lifecycle. Future replacements use the demo cost of the new construction. + demo_costs_of_baseline_objects = 0 + + # check costs for reasonableness + if material_cost.abs + demolition_cost.abs + om_cost.abs == 0 + runner.registerInfo('No costs were requested for motors improvements.') + else + costs_requested = true + end + + # check lifecycle arguments for reasonableness + if (years_until_costs_start < 0) && (years_until_costs_start > expected_life) + runner.registerError('Years until costs start should be a non-negative integer less than Expected Life.') + end + if (expected_life < 1) && (expected_life > 100) + runner.registerError('Choose an integer greater than 0 and less than or equal to 100 for Expected Life.') + end + if om_frequency < 1 + runner.registerError('Choose an integer greater than 0 for O & M Frequency.') + end + + # short def to make numbers pretty (converts 4125001.25641 to 4,125,001.26 or 4,125,001). The definition be called through this measure + def neat_numbers(number, roundto = 2) # round to 0 or 2) + if roundto == 2 + number = format '%.2f', number + else + number = number.round + end + # regex to add commas + number.to_s.reverse.gsub(/([0-9]{3}(?=([0-9])))/, '\\1,').reverse + end # end def neat_numbers + + # helper that loops through lifecycle costs getting total costs under "Construction" or "Salvage" category and add to counter if occurs during year 0 + def get_total_costs_for_objects(objects) + counter = 0 + objects.each do |object| + object_LCCs = object.lifeCycleCosts + object_LCCs.each do |object_LCC| + if (object_LCC.category == 'Construction') || (object_LCC.category == 'Salvage') + if object_LCC.yearsFromStart == 0 + counter += object_LCC.totalCost + end + end + end + end + return counter + end # end of def get_total_costs_for_objects(objects) + + # get loops for measure + if apply_to_all_loops + loops = model.getAirLoopHVACs + else + loops = [] + loops << loop # only run on a single space type + end + + # get cop values + initial_motor_efficiency_values = [] + missing_initial_motor_efficiency = 0 + + # loop through air loops + loops.each do |loop| + supply_components = loop.supplyComponents + + # find fans on loop + supply_components.each do |supply_component| + hVACComponent = supply_component.to_FanConstantVolume + if hVACComponent.empty? + hVACComponent = supply_component.to_FanVariableVolume + end + if hVACComponent.empty? + hVACComponent = supply_component.to_FanOnOff + end + + # alter components of correct type + if !hVACComponent.empty? + hVACComponent = hVACComponent.get + + # change and report changes to fans and motors + initial_motor_efficiency = hVACComponent.fanEfficiency + target_motor_efficiency = initial_motor_efficiency + motor_eff * 0.01 + initial_motor_efficiency_values << initial_motor_efficiency + if target_motor_efficiency > 1 + hVACComponent.setFanEfficiency(1.0) + runner.registerWarning("Requested efficiency of #{target_motor_efficiency * 100}% for #{hVACComponent.name} is not possible. Setting motor efficiency to 100%.") + elsif target_motor_efficiency < 0 + hVACComponent.setFanEfficiency(0.0) + runner.registerWarning("Requested efficiency of #{target_motor_efficiency * 100}% for #{hVACComponent.name} is not possible. Setting motor efficiency to 0%.") + else + hVACComponent.setFanEfficiency(target_motor_efficiency) + runner.registerInfo("Changing the motor efficiency from #{initial_motor_efficiency * 100}% to #{target_motor_efficiency * 100}% for '#{hVACComponent.name}' onloop '#{loop.name}.'") + if target_motor_efficiency > 0.96 + runner.registerWarning("Requested efficiency for #{hVACComponent.name} is greater than 96%.") + end + end + + # get initial year 0 cost + yr0_capital_totalCosts_baseline += get_total_costs_for_objects([hVACComponent]) + + # demo value of baseline costs associated with unit + demo_LCCs = hVACComponent.lifeCycleCosts + demo_LCCs.each do |demo_LCC| + if demo_LCC.category == 'Salvage' + demo_costs_of_baseline_objects += demo_LCC.totalCost + end + end + + # remove all old costs + if !hVACComponent.lifeCycleCosts.empty? && (remove_costs == true) + runner.registerInfo("Removing existing lifecycle cost objects associated with #{hVACComponent.name}") + removed_costs = hVACComponent.removeLifeCycleCosts + end + + # add new costs + if costs_requested == true + + # adding new cost items + lcc_mat = OpenStudio::Model::LifeCycleCost.createLifeCycleCost("LCC_Mat - #{hVACComponent.name}", hVACComponent, material_cost, 'CostPerEach', 'Construction', expected_life, years_until_costs_start) + # cost for if demo_initial_Construction == true is added at the end of the measure + lcc_demo = OpenStudio::Model::LifeCycleCost.createLifeCycleCost("LCC_Demo - #{hVACComponent.name}", hVACComponent, demolition_cost, 'CostPerEach', 'Salvage', expected_life, years_until_costs_start + expected_life) + lcc_om = OpenStudio::Model::LifeCycleCost.createLifeCycleCost("LCC_OM - #{hVACComponent.name}", hVACComponent, om_cost, 'CostPerEach', 'Maintenance', om_frequency, 0) + + # get final year 0 cost + yr0_capital_totalCosts_proposed += get_total_costs_for_objects([hVACComponent]) + + end # end of costs_requested == true + + end # end if not hVACComponent.empty? + end # end supply_components.each do + end # end loops.each do + + # add one time demo cost of removed windows if appropriate + if demo_cost_initial_const == true + building = model.getBuilding + lcc_baseline_demo = OpenStudio::Model::LifeCycleCost.createLifeCycleCost('LCC_baseline_demo', building, demo_costs_of_baseline_objects, 'CostPerEach', 'Salvage', 0, years_until_costs_start).get # using 0 for repeat period since one time cost. + runner.registerInfo("Adding one time cost of $#{neat_numbers(lcc_baseline_demo.totalCost, 0)} related to demolition of baseline objects.") + + # if demo occurs on year 0 then add to initial capital cost counter + if lcc_baseline_demo.yearsFromStart == 0 + yr0_capital_totalCosts_proposed += lcc_baseline_demo.totalCost + end + end + + if initial_motor_efficiency_values.size + missing_initial_motor_efficiency == 0 + runner.registerAsNotApplicable('The affected loop(s) does not contain any fans, the model will not be altered.') + return true + end + + # reporting initial condition of model + runner.registerInitialCondition("The starting motor efficiency values in affected loop(s) range from #{initial_motor_efficiency_values.min * 100}% to #{initial_motor_efficiency_values.max * 100}%. Initial year 0 capital costs for affected fans is $#{neat_numbers(yr0_capital_totalCosts_baseline, 0)}.") + + # reporting final condition of model + runner.registerFinalCondition("#{initial_motor_efficiency_values.size + missing_initial_motor_efficiency} fans had motor efficiency values set to altered. Final year 0 capital costs for affected fans is $#{neat_numbers(yr0_capital_totalCosts_proposed, 0)}.") + + return true + end # end the cop method +end # end the measure + +# this allows the measure to be used by the application +ImproveFanTotalEfficiencybyPercentage.new.registerWithApplication diff --git a/lib/measures/ImproveFanTotalEfficiencybyPercentage/measure.xml b/lib/measures/ImproveFanTotalEfficiencybyPercentage/measure.xml new file mode 100644 index 0000000..c75de87 --- /dev/null +++ b/lib/measures/ImproveFanTotalEfficiencybyPercentage/measure.xml @@ -0,0 +1,150 @@ + + 3.0 + improve_fan_total_efficiencyby_percentage + ebeca0aa-a432-4283-a714-17116f7c8f8c + 2988238d-43fd-4d62-883b-130aecd70a90 + 20190212T002510Z + F78494F2 + ImproveFanTotalEfficiencybyPercentage + Improve Fan Total Efficiency by Percentage + + + + + object + Choose an Air Loop to Alter. + Choice + true + false + *All Air Loops* + + + {be2619d7-0a6a-4a6f-87eb-90118a121a42} + *All Air Loops* + + + + + motor_eff + Fan Total Efficiency Improvement(%). + Double + true + false + 3 + + + remove_costs + Remove Baseline Costs From Effected Fans? + Boolean + true + false + false + + + true + true + + + false + false + + + + + material_cost + Material and Installation Costs per Motor ($). + Double + true + false + 0 + + + demolition_cost + Demolition Costs per Motor ($). + Double + true + false + 0 + + + years_until_costs_start + Years Until Costs Start (whole years). + Integer + true + false + 0 + + + demo_cost_initial_const + Demolition Costs Occur During Initial Construction? + Boolean + true + false + false + + + true + true + + + false + false + + + + + expected_life + Expected Life (whole years). + Integer + true + false + 20 + + + om_cost + O & M Costs per Motor ($). + Double + true + false + 0 + + + om_frequency + O & M Frequency (whole years). + Integer + true + false + 1 + + + + + + HVAC.Distribution + + + + Measure Type + ModelMeasure + string + + + Uses SketchUp API + false + boolean + + + + + + OpenStudio + 1.0.3 + 1.0.3 + + measure.rb + rb + script + 7ED92CF1 + + + diff --git a/lib/measures/IncreaseInsulationRValueForExteriorWalls/tests/IncreaseInsulationRValueForExteriorWalls_01_Test.rb b/lib/measures/IncreaseInsulationRValueForExteriorWalls/tests/IncreaseInsulationRValueForExteriorWalls_01_Test.rb index 133036f..7119861 100644 --- a/lib/measures/IncreaseInsulationRValueForExteriorWalls/tests/IncreaseInsulationRValueForExteriorWalls_01_Test.rb +++ b/lib/measures/IncreaseInsulationRValueForExteriorWalls/tests/IncreaseInsulationRValueForExteriorWalls_01_Test.rb @@ -208,7 +208,7 @@ def test_IncreaseInsulationRValueForExteriorWalls_NewConstruction_FullyCosted expected_messages["Construction 'Test_No Insulation' does not appear to have an insulation layer and was not altered."] = false result.warnings.each do |warning| expected_messages.each_key do |message| - if warning.logMessage =~ Regexp.new(message) + if warning.logMessage.match?(Regexp.new(message)) assert(expected_messages[message] == false, "Message '#{message}' found multiple times") expected_messages[message] = true end diff --git a/lib/measures/ReplaceFanTotalEfficiency/measure.rb b/lib/measures/ReplaceFanTotalEfficiency/measure.rb new file mode 100644 index 0000000..7835abc --- /dev/null +++ b/lib/measures/ReplaceFanTotalEfficiency/measure.rb @@ -0,0 +1,330 @@ +# frozen_string_literal: true + +# start the measure +class ReplaceFanTotalEfficiency < OpenStudio::Ruleset::ModelUserScript + # define the name that a user will see, this method may be deprecated as + # the display name in PAT comes from the name field in measure.xml + def name + return 'Replace Fan Total Efficiency' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # populate choice argument for constructions that are applied to surfaces in the model + loop_handles = OpenStudio::StringVector.new + loop_display_names = OpenStudio::StringVector.new + + # putting air loops and names into hash + loop_args = model.getAirLoopHVACs + loop_args_hash = {} + loop_args.each do |loop_arg| + loop_args_hash[loop_arg.name.to_s] = loop_arg + end + + # looping through sorted hash of air loops + loop_args_hash.sort.map do |key, value| + show_loop = false + components = value.supplyComponents + components.each do |component| + if !component.to_FanConstantVolume.empty? + show_loop = true + end + if !component.to_FanVariableVolume.empty? + show_loop = true + end + if !component.to_FanOnOff.empty? + show_loop = true + end + end + + # if loop as object of correct type then add to hash. + if show_loop == true + loop_handles << value.handle.to_s + loop_display_names << key + end + end + + # add building to string vector with air loops + building = model.getBuilding + loop_handles << building.handle.to_s + loop_display_names << '*All Air Loops*' + + # make an argument for air loops + object = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('object', loop_handles, loop_display_names, true) + object.setDisplayName('Choose an Air Loop to Alter.') + object.setDefaultValue('*All Air Loops*') # if no loop is chosen this will run on all air loops + args << object + + # TODO: - change this to choice list from design document + # make an argument to add new space true/false + motor_eff = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('motor_eff', true) + motor_eff.setDisplayName('Fan Total Efficiency Replacement in %') + motor_eff.setDefaultValue(70) + args << motor_eff + + # bool argument to remove existing costs + remove_costs = OpenStudio::Ruleset::OSArgument.makeBoolArgument('remove_costs', true) + remove_costs.setDisplayName('Remove Baseline Costs From Effected Fans?') + remove_costs.setDefaultValue(false) + args << remove_costs + + # make an argument for material and installation cost + material_cost = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('material_cost', true) + material_cost.setDisplayName('Material and Installation Costs per Motor ($).') + material_cost.setDefaultValue(0.0) + args << material_cost + + # make an argument for demolition cost + demolition_cost = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('demolition_cost', true) + demolition_cost.setDisplayName('Demolition Costs per Motor ($).') + demolition_cost.setDefaultValue(0.0) + args << demolition_cost + + # make an argument for duration in years until costs start + years_until_costs_start = OpenStudio::Ruleset::OSArgument.makeIntegerArgument('years_until_costs_start', true) + years_until_costs_start.setDisplayName('Years Until Costs Start (whole years).') + years_until_costs_start.setDefaultValue(0) + args << years_until_costs_start + + # make an argument to determine if demolition costs should be included in initial construction + demo_cost_initial_const = OpenStudio::Ruleset::OSArgument.makeBoolArgument('demo_cost_initial_const', true) + demo_cost_initial_const.setDisplayName('Demolition Costs Occur During Initial Construction?') + demo_cost_initial_const.setDefaultValue(false) + args << demo_cost_initial_const + + # make an argument for expected life + expected_life = OpenStudio::Ruleset::OSArgument.makeIntegerArgument('expected_life', true) + expected_life.setDisplayName('Expected Life (whole years).') + expected_life.setDefaultValue(20) + args << expected_life + + # make an argument for o&m cost + om_cost = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('om_cost', true) + om_cost.setDisplayName('O & M Costs per Motor ($).') + om_cost.setDefaultValue(0.0) + args << om_cost + + # make an argument for o&m frequency + om_frequency = OpenStudio::Ruleset::OSArgument.makeIntegerArgument('om_frequency', true) + om_frequency.setDisplayName('O & M Frequency (whole years).') + om_frequency.setDefaultValue(1) + args << om_frequency + + return args + end # end the arguments method + + # define what happens when the measure is cop + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # assign the user inputs to variables + object = runner.getOptionalWorkspaceObjectChoiceValue('object', user_arguments, model) # model is passed in because of argument type + motor_eff = runner.getDoubleArgumentValue('motor_eff', user_arguments) + remove_costs = runner.getBoolArgumentValue('remove_costs', user_arguments) + material_cost = runner.getDoubleArgumentValue('material_cost', user_arguments) + demolition_cost = runner.getDoubleArgumentValue('demolition_cost', user_arguments) + years_until_costs_start = runner.getIntegerArgumentValue('years_until_costs_start', user_arguments) + demo_cost_initial_const = runner.getBoolArgumentValue('demo_cost_initial_const', user_arguments) + expected_life = runner.getIntegerArgumentValue('expected_life', user_arguments) + om_cost = runner.getDoubleArgumentValue('om_cost', user_arguments) + om_frequency = runner.getIntegerArgumentValue('om_frequency', user_arguments) + + # check the loop for reasonableness + apply_to_all_loops = false + loop = nil + if object.empty? + handle = runner.getStringArgumentValue('loop', user_arguments) + if handle.empty? + runner.registerError('No loop was chosen.') + else + runner.registerError("The selected loop with handle '#{handle}' was not found in the model. It may have been removed by another measure.") + end + return false + else + if !object.get.to_Loop.empty? + loop = object.get.to_Loop.get + elsif !object.get.to_Building.empty? + apply_to_all_loops = true + else + runner.registerError('Script Error - argument not showing up as loop.') + return false + end + end # end of if loop.empty? + + # set flags to use later + costs_requested = false + + # set values to use later + yr0_capital_totalCosts_baseline = 0 + yr0_capital_totalCosts_proposed = 0 + + # If demo_cost_initial_const is true then will be applied once in the lifecycle. Future replacements use the demo cost of the new construction. + demo_costs_of_baseline_objects = 0 + + # check costs for reasonableness + if material_cost.abs + demolition_cost.abs + om_cost.abs == 0 + runner.registerInfo('No costs were requested for motors improvements.') + else + costs_requested = true + end + + # check lifecycle arguments for reasonableness + if (years_until_costs_start < 0) && (years_until_costs_start > expected_life) + runner.registerError('Years until costs start should be a non-negative integer less than Expected Life.') + end + if (expected_life < 1) && (expected_life > 100) + runner.registerError('Choose an integer greater than 0 and less than or equal to 100 for Expected Life.') + end + if om_frequency < 1 + runner.registerError('Choose an integer greater than 0 for O & M Frequency.') + end + + # short def to make numbers pretty (converts 4125001.25641 to 4,125,001.26 or 4,125,001). The definition be called through this measure + def neat_numbers(number, roundto = 2) # round to 0 or 2) + if roundto == 2 + number = format '%.2f', number + else + number = number.round + end + # regex to add commas + number.to_s.reverse.gsub(/([0-9]{3}(?=([0-9])))/, '\\1,').reverse + end # end def neat_numbers + + # helper that loops through lifecycle costs getting total costs under "Construction" or "Salvage" category and add to counter if occurs during year 0 + def get_total_costs_for_objects(objects) + counter = 0 + objects.each do |object| + object_LCCs = object.lifeCycleCosts + object_LCCs.each do |object_LCC| + if (object_LCC.category == 'Construction') || (object_LCC.category == 'Salvage') + if object_LCC.yearsFromStart == 0 + counter += object_LCC.totalCost + end + end + end + end + return counter + end # end of def get_total_costs_for_objects(objects) + + # get loops for measure + if apply_to_all_loops + loops = model.getAirLoopHVACs + else + loops = [] + loops << loop # only run on a single space type + end + + # get cop values + initial_motor_efficiency_values = [] + missing_initial_motor_efficiency = 0 + + # loop through air loops + loops.each do |loop| + supply_components = loop.supplyComponents + + # find fans on loop + supply_components.each do |supply_component| + hVACComponent = supply_component.to_FanConstantVolume + if hVACComponent.empty? + hVACComponent = supply_component.to_FanVariableVolume + end + if hVACComponent.empty? + hVACComponent = supply_component.to_FanOnOff + end + + # alter components of correct type + if !hVACComponent.empty? + hVACComponent = hVACComponent.get + + # change and report changes to fans and motors + initial_motor_efficiency = hVACComponent.fanEfficiency + target_motor_efficiency = motor_eff * 0.01 + initial_motor_efficiency_values << initial_motor_efficiency + if target_motor_efficiency > 1 + hVACComponent.setFanEfficiency(1.0) + runner.registerWarning("Requested efficiency of #{target_motor_efficiency * 100}% for #{hVACComponent.name} is not possible. Setting motor efficiency to 100%.") + elsif target_motor_efficiency < 0 + hVACComponent.setFanEfficiency(0.0) + runner.registerWarning("Requested efficiency of #{target_motor_efficiency * 100}% for #{hVACComponent.name} is not possible. Setting motor efficiency to 0%.") + elsif target_motor_efficiency < initial_motor_efficiency + hVACComponent.setFanEfficiency(initial_motor_efficiency) + runner.registerWarning("Requested efficiency of #{target_motor_efficiency * 100}% for #{hVACComponent.name} is the same as the initial efficiency. No changes.") + else + hVACComponent.setFanEfficiency(target_motor_efficiency) + runner.registerInfo("Changing the motor efficiency from #{initial_motor_efficiency * 100}% to #{target_motor_efficiency * 100}% for '#{hVACComponent.name}' onloop '#{loop.name}.'") + if target_motor_efficiency > 0.96 + runner.registerWarning("Requested efficiency for #{hVACComponent.name} is greater than 96%.") + end + end + + # get initial year 0 cost + yr0_capital_totalCosts_baseline += get_total_costs_for_objects([hVACComponent]) + + # demo value of baseline costs associated with unit + demo_LCCs = hVACComponent.lifeCycleCosts + demo_LCCs.each do |demo_LCC| + if demo_LCC.category == 'Salvage' + demo_costs_of_baseline_objects += demo_LCC.totalCost + end + end + + # remove all old costs + if !hVACComponent.lifeCycleCosts.empty? && (remove_costs == true) + runner.registerInfo("Removing existing lifecycle cost objects associated with #{hVACComponent.name}") + removed_costs = hVACComponent.removeLifeCycleCosts + end + + # add new costs + if costs_requested == true + + # adding new cost items + lcc_mat = OpenStudio::Model::LifeCycleCost.createLifeCycleCost("LCC_Mat - #{hVACComponent.name}", hVACComponent, material_cost, 'CostPerEach', 'Construction', expected_life, years_until_costs_start) + # cost for if demo_initial_Construction == true is added at the end of the measure + lcc_demo = OpenStudio::Model::LifeCycleCost.createLifeCycleCost("LCC_Demo - #{hVACComponent.name}", hVACComponent, demolition_cost, 'CostPerEach', 'Salvage', expected_life, years_until_costs_start + expected_life) + lcc_om = OpenStudio::Model::LifeCycleCost.createLifeCycleCost("LCC_OM - #{hVACComponent.name}", hVACComponent, om_cost, 'CostPerEach', 'Maintenance', om_frequency, 0) + + # get final year 0 cost + yr0_capital_totalCosts_proposed += get_total_costs_for_objects([hVACComponent]) + + end # end of costs_requested == true + + end # end if not hVACComponent.empty? + end # end supply_components.each do + end # end loops.each do + + # add one time demo cost of removed windows if appropriate + if demo_cost_initial_const == true + building = model.getBuilding + lcc_baseline_demo = OpenStudio::Model::LifeCycleCost.createLifeCycleCost('LCC_baseline_demo', building, demo_costs_of_baseline_objects, 'CostPerEach', 'Salvage', 0, years_until_costs_start).get # using 0 for repeat period since one time cost. + runner.registerInfo("Adding one time cost of $#{neat_numbers(lcc_baseline_demo.totalCost, 0)} related to demolition of baseline objects.") + + # if demo occurs on year 0 then add to initial capital cost counter + if lcc_baseline_demo.yearsFromStart == 0 + yr0_capital_totalCosts_proposed += lcc_baseline_demo.totalCost + end + end + + if initial_motor_efficiency_values.size + missing_initial_motor_efficiency == 0 + runner.registerAsNotApplicable('The affected loop(s) does not contain any fans, the model will not be altered.') + return true + end + + # reporting initial condition of model + runner.registerInitialCondition("The starting motor efficiency values in affected loop(s) range from #{initial_motor_efficiency_values.min * 100}% to #{initial_motor_efficiency_values.max * 100}%. Initial year 0 capital costs for affected fans is $#{neat_numbers(yr0_capital_totalCosts_baseline, 0)}.") + + # reporting final condition of model + runner.registerFinalCondition("#{initial_motor_efficiency_values.size + missing_initial_motor_efficiency} fans had motor efficiency values set to altered. Final year 0 capital costs for affected fans is $#{neat_numbers(yr0_capital_totalCosts_proposed, 0)}.") + + return true + end # end the cop method +end # end the measure + +# this allows the measure to be used by the application +ReplaceFanTotalEfficiency.new.registerWithApplication diff --git a/lib/measures/ReplaceFanTotalEfficiency/measure.xml b/lib/measures/ReplaceFanTotalEfficiency/measure.xml new file mode 100644 index 0000000..e14e578 --- /dev/null +++ b/lib/measures/ReplaceFanTotalEfficiency/measure.xml @@ -0,0 +1,150 @@ + + 3.0 + replace_fan_total_efficiency + ebeca0aa-a432-4283-a714-17116f7c8f8c + 348976a4-526f-4a56-b819-74c78f8a07e3 + 20190212T002510Z + F78494F2 + ReplaceFanTotalEfficiency + Replace Fan Total Efficiency + + + + + object + Choose an Air Loop to Alter. + Choice + true + false + *All Air Loops* + + + {7d3f0300-6b06-458a-ad5e-0d5d7ec180cc} + *All Air Loops* + + + + + motor_eff + Fan Total Efficiency Replacement in % + Double + true + false + 70 + + + remove_costs + Remove Baseline Costs From Effected Fans? + Boolean + true + false + false + + + true + true + + + false + false + + + + + material_cost + Material and Installation Costs per Motor ($). + Double + true + false + 0 + + + demolition_cost + Demolition Costs per Motor ($). + Double + true + false + 0 + + + years_until_costs_start + Years Until Costs Start (whole years). + Integer + true + false + 0 + + + demo_cost_initial_const + Demolition Costs Occur During Initial Construction? + Boolean + true + false + false + + + true + true + + + false + false + + + + + expected_life + Expected Life (whole years). + Integer + true + false + 20 + + + om_cost + O & M Costs per Motor ($). + Double + true + false + 0 + + + om_frequency + O & M Frequency (whole years). + Integer + true + false + 1 + + + + + + HVAC.Distribution + + + + Measure Type + ModelMeasure + string + + + Uses SketchUp API + false + boolean + + + + + + OpenStudio + 1.0.3 + 1.0.3 + + measure.rb + rb + script + FCCFD3DA + + + diff --git a/lib/measures/add_apszhp_to_each_zone/measure.rb b/lib/measures/add_apszhp_to_each_zone/measure.rb new file mode 100644 index 0000000..eaaefec --- /dev/null +++ b/lib/measures/add_apszhp_to_each_zone/measure.rb @@ -0,0 +1,607 @@ +# frozen_string_literal: true + +# Author: Julien Marrec +# email: julien.marrec@gmail.com + +# start the measure +class AddAPSZHPToEachZone < OpenStudio::Ruleset::ModelUserScript + # define the name that a user will see, this method may be deprecated as + # the display name in PAT comes from the name field in measure.xml + def name + return 'Add a PSZ-HP to each zone' + end + + def description + return 'This will add a Rooftop Packaged Single Zone Heat Pump (RTU with DX cooling and DX heating coils) to each zone of the model.' + end + + def modeler_description + return "Add a System 4 - PSZ-HP - unit for each zone. This is a single zone system. +Parameters: +- Double: COP cooling and COP heating (Double) +- Boolean: supplementary electric heating coil (Boolean) +- Pressure rise (Optional Double) +- Deletion of existing HVAC equipment (Boolean) +- DCV enabled or not (Boolean) +- Fan type: Variable Volume Fan (VFD) or not (Constant Volume) (Choice) +- Filter for the zone name (String): only zones that contains the string you input in filter will receive this system." + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + delete_existing = OpenStudio::Ruleset::OSArgument.makeBoolArgument('delete_existing', true) + delete_existing.setDisplayName('Delete any existing HVAC equipment?') + args << delete_existing + + cop_cooling = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('cop_cooling', true) + cop_cooling.setDisplayName('COP Cooling (SI)') + cop_cooling.setDefaultValue(3.1) + args << cop_cooling + + cop_heating = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('cop_heating', true) + cop_heating.setDisplayName('COP Heating (SI)') + cop_heating.setDefaultValue(3.1) + args << cop_heating + + has_electric_coil = OpenStudio::Ruleset::OSArgument.makeBoolArgument('has_electric_coil', false) + has_electric_coil.setDisplayName('Include supplementary electric heating coils?') + has_electric_coil.setDefaultValue(true) + args << has_electric_coil + + has_dcv = OpenStudio::Ruleset::OSArgument.makeBoolArgument('has_dcv', false) + has_dcv.setDisplayName('Enable Demand Controlled Ventilation?') + has_dcv.setDefaultValue(false) + args << has_dcv + + chs = OpenStudio::StringVector.new + chs << 'Constant Volume (default)' + chs << 'Variable Volume (VFD)' + fan_type = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('fan_type', chs, true) + fan_type.setDisplayName('Select fan type:') + args << fan_type + + fan_pressure_rise = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('fan_pressure_rise', false) + fan_pressure_rise.setDisplayName('Fan Pressure Rise (Pa)') + fan_pressure_rise.setDescription('Leave blank for default value') + # fan_pressure_rise.setDefaultValue(0) + args << fan_pressure_rise + + chs = OpenStudio::StringVector.new + chs << 'By Space Type' + chs << "By Space Type's 'Standards Space Type'" + chs << 'By Zone Filter' + filter_type = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('filter_type', chs, true) + filter_type.setDisplayName('How do you want to choose the affected zones?') + args << filter_type + + # create an argument for a space type to be used in the model. Only return those that are used + spaceTypes = model.getSpaceTypes + usedSpaceTypes_handle = OpenStudio::StringVector.new + usedSpaceTypes_displayName = OpenStudio::StringVector.new + + # Should normally be an OpenStudio::StringVector.new but it doesn't have a uniq! method and it works with a regular hash.. + standardsSpaceType = [] + + spaceTypes.each do |spaceType| + if !spaceType.spaces.empty? # only show space types used in the building + usedSpaceTypes_handle << spaceType.handle.to_s + usedSpaceTypes_displayName << spaceType.name.to_s + + if !spaceType.standardsSpaceType.empty? + standardsSpaceType << spaceType.standardsSpaceType.get + end + end + end + + # make an argument for space type + space_type = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('space_type', usedSpaceTypes_handle, usedSpaceTypes_displayName, false) + space_type.setDisplayName('a. Which Space Type?') + args << space_type + + # Argument for Standards Space Type + + # First, make it unique + standardsSpaceType.uniq! + standards_space_type = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('standards_space_type', standardsSpaceType, false) + standards_space_type.setDisplayName('b. Which Standards Space Type') + args << standards_space_type + + zone_filter = OpenStudio::Ruleset::OSArgument.makeStringArgument('zone_filter', false) + zone_filter.setDisplayName('c. Only Apply to Zones that contain the following string') + zone_filter.setDescription("Case insensitive. For example, type 'retail' to apply to zones that have the word 'retail' or 'REtaiL' in their name. Leave blank to apply to all zones") + args << zone_filter + + return args + end # end the arguments method + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # Retrieve arguments' values + delete_existing = runner.getBoolArgumentValue('delete_existing', user_arguments) + cop_cooling = runner.getDoubleArgumentValue('cop_cooling', user_arguments) + cop_heating = runner.getDoubleArgumentValue('cop_heating', user_arguments) + has_electric_coil = runner.getBoolArgumentValue('has_electric_coil', user_arguments) + has_dcv = runner.getBoolArgumentValue('has_dcv', user_arguments) + + # Get fan_pressure_rise: this is an OptionalDouble - we'll use '.get' later + fan_pressure_rise = runner.getOptionalDoubleArgumentValue('fan_pressure_rise', user_arguments) + + # FanType + fan_type = runner.getStringArgumentValue('fan_type', user_arguments) + runner.registerInfo("Fan type: #{fan_type}") + + if fan_type == 'Variable Volume (VFD)' + has_vfd = true + else + has_vfd = false + end + + filter_type = runner.getStringArgumentValue('filter_type', user_arguments) + + if filter_type == 'By Space Type' + space_type = runner.getOptionalWorkspaceObjectChoiceValue('space_type', user_arguments, model) + if !space_type.empty? + space_type = space_type.get + if !space_type.to_SpaceType.empty? + space_type = space_type.to_SpaceType.get + zones = [] + space_type.spaces.each do |space| + if !space.thermalZone.empty? + z = space.thermalZone.get + zones << z + end + end + end + end + + elsif filter_type == "By Space Type's 'Standards Space Type'" + + standards_space_type = runner.getOptionalStringArgumentValue('standards_space_type', user_arguments) + puts standards_space_type.class + + if !standards_space_type.empty? + standards_space_type = standards_space_type.get + puts standards_space_type + space_types = model.getSpaceTypes + + zones = [] + + space_types.each do |space_type| + if space_type.standardsSpaceType.to_s.casecmp(standards_space_type).zero? + space_type.spaces.each do |space| + if !space.thermalZone.empty? + z = space.thermalZone.get + # We MUST check if zone isn't in there yet (or at the end do zones.uniq!) because several spaces can refer to the same thermal zone! + if !zones.include?(z) + zones << z + end + end + end + end + end + end + + else + # Zone filter + zone_filter = runner.getOptionalStringArgumentValue('zone_filter', user_arguments) + + # Get all thermal zones + all_zones = model.getThermalZones + + # Array to store the zones that match the filter + zones = [] + all_zones.each do |z| + # Skip zone if name doesn't include zone_filter + # Putting everything in Upper Case to make it case insensitive + if !zone_filter.empty? + if z.name.to_s.upcase.include? zone_filter.to_s.upcase + zones << z + end + end + end + + if zones.empty? + runner.registerError("Your zone filter #{zone_filter} did not match anything") + return false + end + + end # End of if filter_type + + # Output zone names to console + puts "\n\n================ ZONES THAT MATCHED THE FILTER ================\n" + zones.each do |z| + puts z.name + end + + # info for initial condition + initial_num_air_loops_demand_control = 0 + final_num_air_loops_demand_control = 0 + initial_num_fan_VFD = 0 + final_num_fan_VFD = 0 + delete_existing_air_loops = 0 + delete_existing_chiller_loops = 0 + delete_existing_condenser_loops = 0 + affected_loops = 0 + + # If we need to delete existing HVAC loops, we'll store the PRE-EXISTING Loops in the following variables, + # They will be used for clean up at the end + if delete_existing + air_loops = model.getAirLoopHVACs + runner.registerInfo("Number of initial AirLoopHVACs: #{air_loops.size}") + plant_loops = model.getPlantLoops + runner.registerInfo("Number of initial PlantLoops: #{plant_loops.size}") + end + + # For each thermal zones (zones is initialized above, depending on which filter you chose) + zones.each do |z| + # Create a system 4 (PSZ-HP) + air_handler = OpenStudio::Model.addSystemType4(model).to_AirLoopHVAC.get + + # Set name of Air Loop to be thermal_zone + 'Airloop' + # Local variable name convention for a non-constant (dynamic) value is 'snake_case' + base_name = z.name.to_s + air_handler.setName(base_name + ' AirLoop') + + # Get existing fan, created with System 4, constant volume by default + old_fan = air_handler.supplyComponents(OpenStudio::Model::FanConstantVolume.iddObjectType).first + old_fan = old_fan.to_FanConstantVolume.get + + # If you want a VFD, we replace it with a Variable Volume one + if has_vfd + + # Get the outlet node after the existing fan on the loop + next_node = old_fan.outletModelObject.get.to_Node.get + + # Create the new Variable speed fan + fan = OpenStudio::Model::FanVariableVolume.new(model) + + # Add the new fan to the oulet node of the existing fan + # before deleting the existing one + fan.addToNode(next_node) + + # Remove the existing fan. When this happens, either the pump's + # inlet or outlet node will be deleted and the other will remain + old_fan.remove + + # Rename the fan clearly + fan.setName(base_name + ' Variable Volume Fan') + + # If fan_pressure_rise has a non zero null value, assign it. + if !fan_pressure_rise.empty? + # We need the .get because this is an OptionalDouble. the .get will return a Double (float) + fan.setPressureRise(fan_pressure_rise.get) + runner.registerInfo("Fan '#{fan.name}' was assigned pressure rise of '#{fan_pressure_rise.get}' Pa") + end + + final_num_fan_VFD += 1 + + else + # If VFD isn't wanted, we just rename the constant volume fan + old_fan.setName(base_name + ' Constant Volume Fan') + + # If fan_pressure_rise has a non zero null value, assign it. + if !fan_pressure_rise.empty? + # We need the .get because this is an OptionalDouble. the .get will return a Double (float) + old_fan.setPressureRise(fan_pressure_rise.get) + puts "Fan '#{old_fan.name}' was assigned pressure rise of '#{fan_pressure_rise.get}' Pa" + end + + end + + # The Cooling coil expects an OptionalDouble + coil = air_handler.supplyComponents(OpenStudio::Model::CoilCoolingDXSingleSpeed.iddObjectType).first + coil = coil.to_CoilCoolingDXSingleSpeed.get + # Set CoolingCoil COP + coil.setRatedCOP(OpenStudio::OptionalDouble.new(cop_cooling)) + # Set CoolingCoil Name + coil.setName(base_name + ' Coil Cooling DX Single Speed') + + # The Heating coil expects a Double + coilheating = air_handler.supplyComponents(OpenStudio::Model::CoilHeatingDXSingleSpeed.iddObjectType).first + coilheating = coilheating.to_CoilHeatingDXSingleSpeed.get + # Set HeatingCoil COP + coilheating.setRatedCOP(cop_heating) + # Set HeatingCoil Name + coilheating.setName(base_name + ' Coil Heating DX Single Speed') + + # Delete the electric heating coil if unwanted + if !has_electric_coil + coilheatingelec = air_handler.supplyComponents(OpenStudio::Model::CoilHeatingElectric.iddObjectType).first + coilheatingelec.remove + end + + # Enable DCV (dunno if working) + if has_dcv + + # get air_handler supply components + supply_components = air_handler.supplyComponents + + # find AirLoopHVACOutdoorAirSystem on loop + supply_components.each do |supply_component| + hVACComponent = supply_component.to_AirLoopHVACOutdoorAirSystem + if !hVACComponent.empty? + hVACComponent = hVACComponent.get + + # get ControllerOutdoorAir + controller_oa = hVACComponent.getControllerOutdoorAir + controller_oa.setName(base_name + ' Controller Outdoor Air') + + # get ControllerMechanicalVentilation + controller_mv = controller_oa.controllerMechanicalVentilation + + # check if demand control is enabled, if not, then enable it + if controller_mv.demandControlledVentilation == true + initial_num_air_loops_demand_control += 1 + else + controller_mv.setDemandControlledVentilation(true) + puts "Enabling demand control ventilation for #{air_handler.name}" + end # End of if + final_num_air_loops_demand_control += 1 + + end # End of HVACComponent.empty? + end # end of supply component do loop + + end # End of has_dcv loop + + # Add a branch for the zone in question + air_handler.addBranchForZone(z) + + # Counter + affected_loops += 1 + end # end of do loop on each thermal zone + + # CLEAN-UP SECTION + # Idea: loop on PRE-EXISTING AirLoops, delete all that don't have any zones anymore + # Then loop on chiller loop, delete all that don't have a coil connected to an air loop + # then loop on condenser water, delette all that don't have a chiller anymore + + # If we need to delete existing HVAC loops, we'll loop on the PRE-EXISTING Loops we stored earlier + if delete_existing + + # Arrays to store the affected loops + chiller_plant_loops = [] + boiler_plant_loops = [] + condenser_plant_loops = [] + + # Display separator for clarity + runner.registerInfo('') + runner.registerInfo('========================== CLEAN-UP: AIR LOOPS ==========================') + + # Loop on the pre-existing air loops (not the ones that were created above) + air_loops.each do |air_loop| + # Check if it's got a thermal zone attached left or not.. + # We assume we'll delete it unless... + delete_flag = true + + air_loop.demandComponents.each do |comp| + # If there is at least a single zone left, we can't delete it + if comp.to_ThermalZone.is_initialized + delete_flag = false + end # end of if + end # end of do loop on comp + + # If deletion is warranted + if delete_flag + # before deletion, let's get the potential associated plant loop. + if air_loop.supplyComponents(OpenStudio::Model::CoilCoolingWater.iddObjectType).empty? + puts "Air loop '#{air_loop.name}' DOES NOT HAVE a CoilHeatingWater" + else + cooling_coil = air_loop.supplyComponents(OpenStudio::Model::CoilCoolingWater.iddObjectType).first.to_CoilCoolingWater.get + chiller_plant_loop = cooling_coil.plantLoop.get + # Store handle in array + chiller_plant_loops << chiller_plant_loop + runner.registerInfo("Air loop '#{air_loop.name}' has a CoilCoolingWater, connected to CHILLER plant loop '#{chiller_plant_loop.name}'") + end + if air_loop.supplyComponents(OpenStudio::Model::CoilHeatingWater.iddObjectType).empty? + puts "Air loop '#{air_loop.name}' DOES NOT HAVE a CoilHeatingWater" + else + heating_coil = air_loop.supplyComponents(OpenStudio::Model::CoilCoolingWater.iddObjectType).first.to_CoilCoolingWater.get + boiler_plant_loop = heating_coil.plantLoop.get + # Store handle in array + boiler_plant_loops << boiler_plant_loop + runner.registerInfo("Air loop '#{air_loop.name}' has a CoilHeatinggWater, connected to BOILER plant loop '#{boiler_plant_loop.name}'") + end + + # Now we can delete and report. + air_loop.remove + runner.registerInfo("DELETED: Air loop '#{air_loop.name}' doesn't have Thermal zones attached and was removed") + delete_existing_air_loops += 1 + else + runner.registerInfo("Air Loop '#{air_loop.name}' has thermal zones and was not deleted") + end # end if delete_flag + end # end air_loops.each do + + # Display separator for clarity + runner.registerInfo('') + runner.registerInfo('====================== CLEAN-UP: CHILLER PLANT LOOPS ======================') + + # First pass on plant loops: chilled water loops. + chiller_plant_loops.each do |chiller_plant_loop| + puts "Chiller plant loop name: #{chiller_plant_loop.name}" + + # Check if the chiller plant loop has remaining demand components + + # Delete flag: first assumption is that yes... unless! + delete_flag = true + + if chiller_plant_loop.demandComponents(OpenStudio::Model::CoilCoolingWater.iddObjectType).empty? + puts "Chiller Plant loop '#{chiller_plant_loop.name}' DOES NOT HAVE a CoilCoolingWater" + else + puts "Chiller Plant loop '#{chiller_plant_loop.name}' has a CoilCoolingWater" + cooling_coil = chiller_plant_loop.demandComponents(OpenStudio::Model::CoilCoolingWater.iddObjectType).first.to_CoilCoolingWater.get + if cooling_coil.airLoopHVAC.empty? + puts "But Cooling coil '#{cooling_coil.name}' is not connected to any airloopHVAC" + else + runner.registerInfo("And Cooling coil '#{cooling_coil.name}' is connected to airloopHVAC '#{cooling_coil.airLoopHVAC.get.name}' and therefore can't be deleted") + # In this case, we can't delete the chiller plant loop + delete_flag = false + end # end cooling_coil.airLoopHVAC.empty? + + end # end of chiller_plant_loop.demandComponents CoilCoolingWater + + # We know it's a chiller plant so this is likely unnecessary, but better safe than sorry + if chiller_plant_loop.demandComponents(OpenStudio::Model::WaterUseConnections.iddObjectType).empty? + puts "Chiller Plant loop '#{chiller_plant_loop.name}' DOES NOT HAVE WaterUseConnections" + else + runner.registerInfo("Chiller Plant loop '#{chiller_plant_loop.name}' has WaterUseConnections and therefore can't be deleted") + delete_flag = false + end + + # If deletion is warranted + if delete_flag + + # This section below is actually optional (but it's nice to only delete affected ones + # before deletion, let's get the potential associated condenser water plant loop. + if chiller_plant_loop.supplyComponents(OpenStudio::Model::ChillerElectricEIR.iddObjectType).empty? + puts "Chiller Plant loop '#{chiller_plant_loop.name}' DOES NOT HAVE an electric chiller" + else + chiller = chiller_plant_loop.supplyComponents(OpenStudio::Model::ChillerElectricEIR.iddObjectType).first.to_ChillerElectricEIR.get + puts "Chiller Plant loop '#{chiller_plant_loop.name}' has an electric chiller '#{chiller.name}' with condenser type '#{chiller.condenserType}'" + # Check directly if chiller has a secondaryPlantLoop (no need to check if chiller.condenserType == 'WaterCooled' first) + if chiller.secondaryPlantLoop.is_initialized + # Chiller is WaterCooled therefore should be connected to a condenser water loop + condenser_plant_loop = chiller.secondaryPlantLoop.get + condenser_plant_loops << condenser_plant_loop + runner.registerInfo("Chiller PlantLoop '#{chiller_plant_loop.name}' has a Water Cooled chiller connected to Condenser Plant Loop '#{condenser_plant_loop.name}'") + end + end + + # Now we can delete and report. + chiller_plant_loop.remove + delete_existing_chiller_loops += 1 + # Should I delete the chiller as well? It remains... + + runner.registerInfo("DELETED: Chiller PlantLoop '#{chiller_plant_loop.name}' wasn't connected to any AirLoopHVAC nor WaterUseConnections and therefore was removed") + + end # end of delete_flag + end # end of chiller_plant_loops.each do + + # Display separator for clarity + runner.registerInfo('') + runner.registerInfo('===================== CLEAN-UP: CONDENSER PLANT LOOPS ====================') + # Second pass on plant loops: condenser water loops. + condenser_plant_loops.each do |condenser_plant_loop| + delete_flag = true + + # If it has got a chiller as a demand component, it could still be empty + if !condenser_plant_loop.demandComponents(OpenStudio::Model::ChillerElectricEIR.iddObjectType).empty? + + chiller = condenser_plant_loop.demandComponents(OpenStudio::Model::ChillerElectricEIR.iddObjectType).first.to_ChillerElectricEIR.get + + # If chiller is actually connected to a chilled water node, then we shall not delete it + if !chiller.chilledWaterInletNodeName.empty? + runner.registerInfo("On Condenser PlantLoop '#{condenser_plant_loop.name}, there is a demand component of type Chiller '#{chiller.name}'" \ + ' that is connected to a chilled water loop and therefore cannot be deleted') + delete_flag = false + else + puts "Plant loop '#{condenser_plant_loop.name}, Chiller '#{chiller.name}' isn't connected to a chilled water loop" + end # end of if chiller.chilledWaterInletNodeName + end # end of plant_loop.demandComponents + + # if deletion is warranted + if delete_flag + condenser_plant_loop.remove + delete_existing_condenser_loops += 1 + runner.registerInfo("DELETED: Plant loop '#{condenser_plant_loop.name}' isn't connected to any chilled water loop") + end + end + + runner.registerInfo('') + runner.registerInfo("For more information, go to 'Advanced Output'") + + # This is the generic way of looping on all loops, checking if it's a condenser plant loop, and to delete it unless it's got a chiller that is connected to chilled water plant loop + # plant_loops.each do |plant_loop| + # # Skip the chiller_plant_loops + # #next if chiller_plant_loops.include? plant_loop + # if chiller_plant_loops.include? plant_loop + # runner.registerInfo("Skipping Plant loop '#{plant_loop.name}' because it is a chiller plant") + # next + # end + # runner.registerInfo("Plant loop '#{plant_loop.name}'") + # + # # Until we know that it is a condenser loop for sure, we assume we can't delete it + # delete_flag = false + # + # # If it has got a chiller as a demand component, it's a condenser water loop + # if not plant_loop.demandComponents(OpenStudio::Model::ChillerElectricEIR::iddObjectType).empty? + # # Now, we assume we'll delete the loop unless it's actually connected and therefore usefull + # delete_flag = true + # chiller = plant_loop.demandComponents(OpenStudio::Model::ChillerElectricEIR::iddObjectType).first.to_ChillerElectricEIR.get + # # If chiller is actually connected to a chilled water node, then we shall not delete it + # if not chiller.chilledWaterInletNodeName.empty? + # runner.registerInfo("On Condenser PlantLoop '#{plant_loop.name}, there is a demand component of type Chiller '#{chiller.name}'" + + # " that is connected to a chilled water loop and therefore cannot be deleted") + # delete_flag = false + # else + # runner.registerInfo("Plant loop '#{plant_loop.name}, Chiller '#{chiller.name}' isn't connected to a chilled water loop") + # end #end of if chiller.chilledWaterInletNodeName + # end #end of plant_loop.demandComponents + # + # # if deletion is warranted + # if delete_flag + # plant_loop.remove + # delete_existing_condenser_loops += 1 + # runner.registerInfo("DELETED: Plant loop '#{plant_loop.name}'") + # end + # + # end #end of plant_loops.each do + + # Third pass on plant loops: boiler water loops. + # TO WRITE + + end # end of if delete_existing + + # Report Initial Condition + if delete_existing + air_loop_str = "\n #{delete_existing_air_loops} existing AirLoopHVACs have been deleted" + chiller_plant_loop_str = "\n #{delete_existing_chiller_loops} existing Chiller PlantLoops have been deleted" + condenser_plant_loop_str = "\n #{delete_existing_condenser_loops} existing Condenser PlantLoops have been deleted" + else + air_loop_str = '' + chiller_plant_loop_str = '' + condenser_plant_loop_str = '' + end # end of delete_existing + + runner.registerInitialCondition("Initially #{initial_num_air_loops_demand_control} air loops had demand controlled ventilation enabled" + + air_loop_str + chiller_plant_loop_str + condenser_plant_loop_str + "\n") + + # Report final condition + base_str = "There are #{OpenStudio.toNeatString(affected_loops, 0, true)} zones for which a PSZ-HP system was " \ + "created with a Cooling COP (SI) of #{OpenStudio.toNeatString(cop_cooling, 2, true)} " \ + "and a Heating COP (SI) of #{OpenStudio.toNeatString(cop_heating, 2, true)}." + + if has_electric_coil + elec_str = 'Supplementary electric heating coils were added.' + else + elec_str = 'Supplementary electrical heating coils were NOT included.' + end # end of has_electric_coil + + if has_vfd + fan_str = "Fan type was changed to be Variable Volume (VFD) for #{final_num_fan_VFD} fans." + else + fan_str = 'Fan type was chosen to be Constant Volume.' + end # end of has_vfd + + if final_num_air_loops_demand_control == 0 + dcv_str = "Demand Controlled Ventilation wasn't enabled for the new air loops" + else + dcv_str = "#{final_num_air_loops_demand_control} air loops now have demand controlled ventilation enabled" + end + + runner.registerFinalCondition(base_str + "\n" + elec_str + "\n" + fan_str + "\n" + dcv_str + "\n \n") + + return true + end # end the run method +end # end the measure + +# this allows the measure to be used by the application +AddAPSZHPToEachZone.new.registerWithApplication diff --git a/lib/measures/add_apszhp_to_each_zone/measure.xml b/lib/measures/add_apszhp_to_each_zone/measure.xml new file mode 100644 index 0000000..a03b248 --- /dev/null +++ b/lib/measures/add_apszhp_to_each_zone/measure.xml @@ -0,0 +1,184 @@ + + 3.0 + add_apszhp_to_each_zone + 2d81d612-3235-429f-ba0a-46b8bf3b4e92 + 10d37243-c94f-4542-934f-3953c44f75f3 + 20180223T005547Z + 87BA8B1E + AddAPSZHPToEachZone + Add a PSZ-HP to each zone + This will add a Rooftop Packaged Single Zone Heat Pump (RTU with DX cooling and DX heating coils) to each zone of the model. + Add a System 4 - PSZ-HP - unit for each zone. This is a single zone system. +Parameters: +- Double: COP cooling and COP heating (Double) +- Boolean: supplementary electric heating coil (Boolean) +- Pressure rise (Optional Double) +- Deletion of existing HVAC equipment (Boolean) +- DCV enabled or not (Boolean) +- Fan type: Variable Volume Fan (VFD) or not (Constant Volume) (Choice) +- Filter for the zone name (String): only zones that contains the string you input in filter will receive this system. + + + delete_existing + Delete any existing HVAC equipment? + Boolean + true + false + + + true + true + + + false + false + + + + + cop_cooling + COP Cooling (SI) + Double + true + false + 3.1 + + + cop_heating + COP Heating (SI) + Double + true + false + 3.1 + + + has_electric_coil + Include supplementary electric heating coils? + Boolean + false + false + true + + + true + true + + + false + false + + + + + has_dcv + Enable Demand Controlled Ventilation? + Boolean + false + false + false + + + true + true + + + false + false + + + + + fan_type + Select fan type: + Choice + true + false + + + Constant Volume (default) + Constant Volume (default) + + + Variable Volume (VFD) + Variable Volume (VFD) + + + + + fan_pressure_rise + Fan Pressure Rise (Pa) + Leave blank for default value + Double + false + false + + + filter_type + How do you want to choose the affected zones? + Choice + true + false + + + By Space Type + By Space Type + + + By Space Type's 'Standards Space Type' + By Space Type's 'Standards Space Type' + + + By Zone Filter + By Zone Filter + + + + + space_type + a. Which Space Type? + Choice + false + false + + + standards_space_type + b. Which Standards Space Type + Choice + false + false + + + zone_filter + c. Only Apply to Zones that contain the following string + Case insensitive. For example, type 'retail' to apply to zones that have the word 'retail' or 'REtaiL' in their name. Leave blank to apply to all zones + String + false + false + + + + + + HVAC.Whole System + + + + Uses SketchUp API + false + boolean + + + Measure Type + ModelMeasure + string + + + + + measure.rb + rb + + E46EE4C8 + + + diff --git a/lib/measures/add_energy_recovery_ventilator/measure.rb b/lib/measures/add_energy_recovery_ventilator/measure.rb new file mode 100644 index 0000000..d78c538 --- /dev/null +++ b/lib/measures/add_energy_recovery_ventilator/measure.rb @@ -0,0 +1,354 @@ +# frozen_string_literal: true + +# see the URL below for information on how to write OpenStudio measures +# http://openstudio.nrel.gov/openstudio-measure-writing-guide + +# see the URL below for access to C++ documentation on model objects (click on "model" in the main window to view model objects) +# http://openstudio.nrel.gov/sites/openstudio.nrel.gov/files/nv_data/cpp_documentation_it/model/html/namespaces.html + +# start the measure +class AddEnergyRecoveryVentilator < OpenStudio::Ruleset::ModelUserScript + # define the name that a user will see, this method may be deprecated as + # the display name in PAT comes from the name field in measure.xml + def name + return 'AddEnergyRecoveryVentilator' + end + + # define the arguments that the user will input + # define the arguments that the user will input + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # Determine how many air loops in model + air_loop_handles = OpenStudio::StringVector.new + air_loop_display_names = OpenStudio::StringVector.new + + # Get/show all unitary air conditioners from current loaded model. + air_loop_handles << '0' + air_loop_display_names << '*All air loops*' + + i_air_loop = 1 + model.getAirLoopHVACs.each do |air_loop| + air_loop_handles << i_air_loop.to_s + air_loop_display_names << air_loop.name.to_s + + i_air_loop += 1 + end + + if i_air_loop == 1 + info_widget = OpenStudio::Ruleset::OSArgument.makeBoolArgument('info_widget', true) + info_widget.setDisplayName('!!!!*** This Measure is not Applicable to loaded Model. Read the description and choose an appropriate baseline model. ***!!!!') + info_widget.setDefaultValue(true) + args << info_widget + return args + end + + air_loop_widget = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('air_loop_widget', air_loop_handles, air_loop_display_names, true) + air_loop_widget.setDisplayName('Apply the measure to ') + air_loop_widget.setDefaultValue(air_loop_display_names[0]) + args << air_loop_widget + + # Sensible Effectiveness at 100% Heating Air Flow (default of 0.76) + sensible_eff_at_100_heating = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('sensible_eff_at_100_heating', false) + sensible_eff_at_100_heating.setDisplayName('Sensible Effectiveness at 100% Heating Air Flow') + sensible_eff_at_100_heating.setDefaultValue(0.76) + args << sensible_eff_at_100_heating + + # Latent Effectiveness at 100% Heating Air Flow (default of 0.76) + latent_eff_at_100_heating = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('latent_eff_at_100_heating', false) + latent_eff_at_100_heating.setDisplayName('Latent Effectiveness at 100% Heating Air Flow') + latent_eff_at_100_heating.setDefaultValue(0.68) + args << latent_eff_at_100_heating + + # Sensible Effectiveness at 75% Heating Air Flow (default of 0.76) + sensible_eff_at_75_heating = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('sensible_eff_at_75_heating', false) + sensible_eff_at_75_heating.setDisplayName('Sensible Effectiveness at 75% Heating Air Flow') + sensible_eff_at_75_heating.setDefaultValue(0.81) + args << sensible_eff_at_75_heating + + # Latent Effectiveness at 100% Heating Air Flow (default of 0.76) + latent_eff_at_75_heating = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('latent_eff_at_75_heating', false) + latent_eff_at_75_heating.setDisplayName('Latent Effectiveness at 75% Heating Air Flow') + latent_eff_at_75_heating.setDefaultValue(0.73) + args << latent_eff_at_75_heating + + # Sensible Effectiveness at 100% Cooling Air Flow (default of 0.76) + sensible_eff_at_100_cooling = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('sensible_eff_at_100_cooling', false) + sensible_eff_at_100_cooling.setDisplayName('Sensible Effectiveness at 100% Cooling Air Flow') + sensible_eff_at_100_cooling.setDefaultValue(0.76) + args << sensible_eff_at_100_cooling + + # Latent Effectiveness at 100% Cooling Air Flow (default of 0.76) + latent_eff_at_100_cooling = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('latent_eff_at_100_cooling', false) + latent_eff_at_100_cooling.setDisplayName('Latent Effectiveness at 100% Cooling Air Flow') + latent_eff_at_100_cooling.setDefaultValue(0.68) + args << latent_eff_at_100_cooling + + # Sensible Effectiveness at 75% Cooling Air Flow (default of 0.76) + sensible_eff_at_75_cooling = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('sensible_eff_at_75_cooling', false) + sensible_eff_at_75_cooling.setDisplayName('Sensible Effectiveness at 75% Cooling Air Flow') + sensible_eff_at_75_cooling.setDefaultValue(0.81) + args << sensible_eff_at_75_cooling + + # Latent Effectiveness at 100% Cooling Air Flow (default of 0.76) + latent_eff_at_75_cooling = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('latent_eff_at_75_cooling', false) + latent_eff_at_75_cooling.setDisplayName('Latent Effectiveness at 75% Cooling Air Flow') + latent_eff_at_75_cooling.setDefaultValue(0.73) + args << latent_eff_at_75_cooling + + # Show ASHRAE standards + heat_exchanger_type_handles = OpenStudio::StringVector.new + heat_exchanger_type_display_names = OpenStudio::StringVector.new + + heat_exchanger_type_handles << '0' + heat_exchanger_type_display_names << 'Rotary' + + heat_exchanger_type_widget = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('heat_exchanger_type_widget', heat_exchanger_type_handles, heat_exchanger_type_display_names, true) + heat_exchanger_type_widget.setDisplayName('Heat Exchanger Type.') + heat_exchanger_type_widget.setDefaultValue(heat_exchanger_type_display_names[0]) + args << heat_exchanger_type_widget + + # Nominal electric power [W] (Note: this is optional. If no value is entered, do nothing) + nominal_electric_power = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('nominal_electric_power', false) + nominal_electric_power.setDisplayName('Nominal electric power [W]') + args << nominal_electric_power + + return args + end # end the arguments method + + def reportValueChangeInfo(value_old, value_new, value_name, airloop_name, runner) + if value_old.nil? + runner.registerInfo("Initial: The #{value_name} on #{airloop_name} was not set.") + else + runner.registerInfo("Initial: The #{value_name} on #{airloop_name} was #{value_old}.") + end + runner.registerInfo("Final: The #{value_name} on #{airloop_name} was set to be #{value_new}.") + return + end + + def setSensibleEffectiveness100Cooling(erv, value_new, airloop_name, runner) + value_old = erv.getSensibleEffectivenessat100CoolingAirFlow + erv.setSensibleEffectivenessat100CoolingAirFlow(value_new) + reportValueChangeInfo(value_old, value_new, 'Sensible Effectiveness at 100% Cooling Air Flow', airloop_name, runner) + return + end + + def setSensibleEffectiveness75Cooling(erv, value_new, airloop_name, runner) + value_old = erv.getSensibleEffectivenessat75CoolingAirFlow + erv.setSensibleEffectivenessat75CoolingAirFlow(value_new) + reportValueChangeInfo(value_old, value_new, 'Sensible Effectiveness at 75% Cooling Air Flow', airloop_name, runner) + return + end + + def setLatentEffectiveness100Cooling(erv, value_new, airloop_name, runner) + value_old = erv.getLatentEffectivenessat100CoolingAirFlow + erv.setLatentEffectivenessat100CoolingAirFlow(value_new) + reportValueChangeInfo(value_old, value_new, 'Latent Effectiveness at 100% Cooling Air Flow', airloop_name, runner) + return + end + + def setLatentEffectiveness75Cooling(erv, value_new, airloop_name, runner) + value_old = erv.getLatentEffectivenessat75CoolingAirFlow + erv.setLatentEffectivenessat75CoolingAirFlow(value_new) + reportValueChangeInfo(value_old, value_new, 'Latent Effectiveness at 75% Cooling Air Flow', airloop_name, runner) + return + end + + def setSensibleEffectiveness100Heating(erv, value_new, airloop_name, runner) + value_old = erv.getSensibleEffectivenessat100HeatingAirFlow + erv.setSensibleEffectivenessat100HeatingAirFlow(value_new) + reportValueChangeInfo(value_old, value_new, 'Sensible Effectiveness at 100% Heating Air Flow', airloop_name, runner) + return + end + + def setSensibleEffectiveness75Heating(erv, value_new, airloop_name, runner) + value_old = erv.getSensibleEffectivenessat75HeatingAirFlow + erv.setSensibleEffectivenessat75HeatingAirFlow(value_new) + reportValueChangeInfo(value_old, value_new, 'Sensible Effectiveness at 75% Heating Air Flow', airloop_name, runner) + return + end + + def setLatentEffectiveness100Heating(erv, value_new, airloop_name, runner) + value_old = erv.getLatentEffectivenessat100HeatingAirFlow + erv.setLatentEffectivenessat100HeatingAirFlow(value_new) + reportValueChangeInfo(value_old, value_new, 'Latent Effectiveness at 100% Heating Air Flow', airloop_name, runner) + return + end + + def setLatentEffectiveness75Heating(erv, value_new, airloop_name, runner) + value_old = erv.getLatentEffectivenessat75HeatingAirFlow + erv.setLatentEffectivenessat75HeatingAirFlow(value_new) + reportValueChangeInfo(value_old, value_new, 'Latent Effectiveness at 75% Heating Air Flow', airloop_name, runner) + return + end + + def setNominalElectricPower(erv, value_new, airloop_name, runner) + value_old = erv.getNominalElectricPower + erv.setNominalElectricPower(value_new) + reportValueChangeInfo(value_old, value_new, 'Nominal electric power', airloop_name, runner) + return + end + + def isOutOfRange(value_new, value_name, runner) + if (value_new < 0) || (value_new > 1) + runner.registerError("OutOfBound! The #{value_name} must be between 0 and 1. Reset the value.") + return true + end + return false + end + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # Determine if the measure is applicable to the model, if not just return and no changes are made. + info_widget = runner.getOptionalWorkspaceObjectChoiceValue('info_widget', user_arguments, model) + if !(info_widget.nil? || info_widget.empty?) + runner.registerInfo('This measure is not applicable.') + return true + end + + air_loop_widget = runner.getOptionalWorkspaceObjectChoiceValue('air_loop_widget', user_arguments, model) + handle = runner.getStringArgumentValue('air_loop_widget', user_arguments) + air_loop_index = handle.to_i + + sensible_eff_at_100_heating = runner.getDoubleArgumentValue('sensible_eff_at_100_heating', user_arguments) + latent_eff_at_100_heating = runner.getDoubleArgumentValue('latent_eff_at_100_heating', user_arguments) + sensible_eff_at_75_heating = runner.getDoubleArgumentValue('sensible_eff_at_75_heating', user_arguments) + latent_eff_at_75_heating = runner.getDoubleArgumentValue('latent_eff_at_75_heating', user_arguments) + + sensible_eff_at_100_cooling = runner.getDoubleArgumentValue('sensible_eff_at_100_cooling', user_arguments) + latent_eff_at_100_cooling = runner.getDoubleArgumentValue('latent_eff_at_100_cooling', user_arguments) + sensible_eff_at_75_cooling = runner.getDoubleArgumentValue('sensible_eff_at_75_cooling', user_arguments) + latent_eff_at_75_cooling = runner.getDoubleArgumentValue('latent_eff_at_75_cooling', user_arguments) + + if isOutOfRange(sensible_eff_at_100_heating, 'sensible_eff_at_100_heating', runner) + return false + end + if isOutOfRange(latent_eff_at_100_heating, 'latent_eff_at_100_heating', runner) + return false + end + if isOutOfRange(sensible_eff_at_75_heating, 'sensible_eff_at_75_heating', runner) + return false + end + if isOutOfRange(latent_eff_at_75_heating, 'latent_eff_at_75_heating', runner) + return false + end + if isOutOfRange(sensible_eff_at_100_cooling, 'sensible_eff_at_100_cooling', runner) + return false + end + if isOutOfRange(latent_eff_at_100_cooling, 'latent_eff_at_100_cooling', runner) + return false + end + if isOutOfRange(sensible_eff_at_75_cooling, 'sensible_eff_at_75_cooling', runner) + return false + end + if isOutOfRange(latent_eff_at_75_cooling, 'latent_eff_at_75_cooling', runner) + return false + end + + heat_exchanger_type_widget = runner.getOptionalWorkspaceObjectChoiceValue('heat_exchanger_type_widget', user_arguments, model) + handle = runner.getStringArgumentValue('heat_exchanger_type_widget', user_arguments) + heat_exchanger_type_index = handle.to_i + + heat_exchanger_type_list = ['Rotary'] + heat_type = heat_exchanger_type_list[heat_exchanger_type_index] + + nominal_electric_power = runner.getOptionalDoubleArgumentValue('nominal_electric_power', user_arguments) + if nominal_electric_power.empty? + nominal_electric_power = nil + else + nominal_electric_power = runner.getDoubleArgumentValue('nominal_electric_power', user_arguments) + end + + # loop through all air loops + i_air_loop = 0 + model.getAirLoopHVACs.each do |air_loop| + # check if the airloop already has an ERV either on a specified air loop or all air loops + i_air_loop += 1 + if (air_loop_index != 0) && (air_loop_index != i_air_loop) + next + end + + has_ERV = false + air_loop.supplyComponents.each do |supply_component| + # check if the supply component is an ERV + if !supply_component.to_HeatExchangerAirToAirSensibleAndLatent.empty? + has_ERV = true + erv = supply_component.to_HeatExchangerAirToAirSensibleAndLatent.get + erv.setHeatExchangerType(heat_type) + setSensibleEffectiveness100Cooling(erv, sensible_eff_at_100_cooling, air_loop.name, runner) + setSensibleEffectiveness75Cooling(erv, sensible_eff_at_75_cooling, air_loop.name, runner) + setLatentEffectiveness100Cooling(erv, latent_eff_at_100_cooling, air_loop.name, runner) + setLatentEffectiveness75Cooling(erv, latent_eff_at_75_cooling, air_loop.name, runner) + + setSensibleEffectiveness100Heating(erv, sensible_eff_at_100_heating, air_loop.name, runner) + setSensibleEffectiveness75Heating(erv, sensible_eff_at_75_heating, air_loop.name, runner) + setLatentEffectiveness100Heating(erv, latent_eff_at_100_heating, air_loop.name, runner) + setLatentEffectiveness75Heating(erv, latent_eff_at_75_heating, air_loop.name, runner) + + # erv.setEconomizerLockout('Yes') + # erv.setEconomizerLockout(true) + erv.setString(23, 'Yes') + + # erv.setSupplyAirOutletTemperatureControl ('No') + # erv.setSupplyAirOutletTemperatureControl (false) + erv.setString(17, 'No') + if !nominal_electric_power.nil? + setNominalElectricPower(erv, nominal_electric_power, air_loop.name, runner) + end + end + end + air_loop.supplyComponents.each do |supply_component| + # if no ERV was found, see if the air loop has an outdoor air system + if has_ERV == false + if !supply_component.to_AirLoopHVACOutdoorAirSystem.empty? + # get the outdoor air system + oa_system = supply_component.to_AirLoopHVACOutdoorAirSystem.get + # create a new heat exchanger and add it to the outdoor air system + erv = OpenStudio::Model::HeatExchangerAirToAirSensibleAndLatent.new(model) + oa_node = oa_system.outboardOANode + if !oa_node.empty? + # set node connection + erv.addToNode(oa_node.get) + # set required fields to a single default value + erv.setHeatExchangerType(heat_type) + setSensibleEffectiveness100Cooling(erv, sensible_eff_at_100_cooling, air_loop.name, runner) + setSensibleEffectiveness75Cooling(erv, sensible_eff_at_75_cooling, air_loop.name, runner) + setLatentEffectiveness100Cooling(erv, latent_eff_at_100_cooling, air_loop.name, runner) + setLatentEffectiveness75Cooling(erv, latent_eff_at_75_cooling, air_loop.name, runner) + + setSensibleEffectiveness100Heating(erv, sensible_eff_at_100_heating, air_loop.name, runner) + setSensibleEffectiveness75Heating(erv, sensible_eff_at_75_heating, air_loop.name, runner) + setLatentEffectiveness100Heating(erv, latent_eff_at_100_heating, air_loop.name, runner) + setLatentEffectiveness75Heating(erv, latent_eff_at_75_heating, air_loop.name, runner) + + # Temporary solution, may need to fix later. 12/22/2013 Da + # erv.setEconomizerLockout('Yes') + # erv.setEconomizerLockout(true) + erv.setString(23, 'Yes') + + # erv.setSupplyAirOutletTemperatureControl ('No') + # erv.setSupplyAirOutletTemperatureControl (false) + erv.setString(17, 'No') + + if !nominal_electric_power.nil? + setNominalElectricPower(erv, nominal_electric_power, air_loop.name, runner) + end + end + end + end + end + end + return true + end # end the run method +end # end the measure + +# this allows the measure to be use by the application +AddEnergyRecoveryVentilator.new.registerWithApplication diff --git a/lib/measures/add_energy_recovery_ventilator/measure.xml b/lib/measures/add_energy_recovery_ventilator/measure.xml new file mode 100644 index 0000000..1837b7a --- /dev/null +++ b/lib/measures/add_energy_recovery_ventilator/measure.xml @@ -0,0 +1,78 @@ + + 3.0 + add_energy_recovery_ventilator + ae413c5f-b035-4019-bdd0-4c69b85dad98 + e5715d12-8fbf-4381-a758-4b94cb9a0193 + 20180213T001950Z + 5E682A03 + AddEnergyRecoveryVentilator + AddEnergyRecoveryVentilator + Energy recovery ventilator transfers energy between the exhaust/relief and outdoor air streams and helps reduce building energy use. The measure adds an air-to-air heat exchanger to the air handler unit. Users can define the latent and sensible heat transfer effectiveness. + The measure loops through all air loops in the baseline model and identify the air loops that contain OS:AirLoopHVAC:OutdoorAirSystem objects. Users can choose one or all air loops from the drop down list to apply this measure. If an OS:HeatExchanger:AirToAir:SensibleAndLatent object is found in the selected air loop, the measure modifies the effectiveness, heat exchanger type, and electric power setting in the model based on user inputs. If no OS:HeatExchanger:AirToAir:SensibleAndLatent object is found in the selected air loop, the measure will attach a OS:HeatExchanger:AirToAir:SensibleAndLatent object to the air loop. The economizer lockout is always set to be Yes. The initial and final values of effectiveness, the heat exchanger type, and nominal electric power are reported during simulation + + + info_widget + !!!!*** This Measure is not Applicable to loaded Model. Read the description and choose an appropriate baseline model. ***!!!! + Boolean + true + false + true + + + true + true + + + false + false + + + + + + + + HVAC.Energy Recovery + + + + Measure Function + Measure + string + + + Requires EnergyPlus Results + false + boolean + + + Uses SketchUp API + false + boolean + + + Measure Type + ModelMeasure + string + + + + + + OpenStudio + 1.0.0 + 1.8.0 + + measure.rb + rb + script + 80D26A09 + + + AddEnergyRecoveryVentilator_Test.rb + rb + test + D733854D + + + diff --git a/lib/measures/add_energy_recovery_ventilator/tests/AddEnergyRecoveryVentilator_Test.rb b/lib/measures/add_energy_recovery_ventilator/tests/AddEnergyRecoveryVentilator_Test.rb new file mode 100644 index 0000000..ce32db1 --- /dev/null +++ b/lib/measures/add_energy_recovery_ventilator/tests/AddEnergyRecoveryVentilator_Test.rb @@ -0,0 +1,58 @@ +# frozen_string_literal: true + +require 'openstudio' +require 'openstudio/ruleset/ShowRunnerOutput' + +require "#{File.dirname(__FILE__)}/../measure.rb" + +require 'test/unit' + +class AddEnergyRecoveryVentilator_Test < Test::Unit::TestCase + # def setup + # end + + # def teardown + # end + + def test_AddEnergyRecoveryVentilator + # create an instance of the measure + measure = AddEnergyRecoveryVentilator.new + + # create an instance of a runner + runner = OpenStudio::Ruleset::OSRunner.new + + # make an empty model + model = OpenStudio::Model::Model.new + + # get arguments and test that they are what we are expecting + arguments = measure.arguments(model) + assert_equal(2, arguments.size) + assert_equal('user_name', arguments[0].name) + assert_equal('add_space', arguments[1].name) + assert(!arguments[0].hasDefaultValue) + + # set argument values to bad values and run the measure + argument_map = OpenStudio::Ruleset::OSArgumentMap.new + user_name = arguments[0].clone + assert(user_name.setValue('')) + argument_map['user_name'] = user_name + measure.run(model, runner, argument_map) + result = runner.result + assert(result.value.valueName == 'Fail') + + # set argument values to good values and run the measure on model with spaces + argument_map = OpenStudio::Ruleset::OSArgumentMap.new + user_name = arguments[0].clone + assert(user_name.setValue('david')) + argument_map['user_name'] = user_name + add_space = arguments[1].clone + assert(add_space.setValue(true)) + argument_map['add_space'] = add_space + measure.run(model, runner, argument_map) + result = runner.result + show_output(result) + assert(result.value.valueName == 'Success') + assert(result.warnings.size == 1) + assert(result.info.size == 2) + end +end diff --git a/lib/measures/improve_simple_glazing_by_percentage/measure.rb b/lib/measures/improve_simple_glazing_by_percentage/measure.rb new file mode 100644 index 0000000..ad6a053 --- /dev/null +++ b/lib/measures/improve_simple_glazing_by_percentage/measure.rb @@ -0,0 +1,81 @@ +# frozen_string_literal: true + +# see the URL below for information on how to write OpenStudio measures +# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ + +# start the measure +class ImproveSimpleGlazingByPercentage < OpenStudio::Ruleset::ModelUserScript + # human readable name + def name + return 'improve_simple_glazing_by_percentage' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # make an argument for glazing u_value improvement percentage + u_value_improvement_percent = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('u_value_improvement_percent', true) + u_value_improvement_percent.setDisplayName('U-value Improvement Percentage (%)') + u_value_improvement_percent.setDefaultValue(20) + args << u_value_improvement_percent + + # make an argument for glazing shgc improvement percentage + shgc_improvement_percent = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('shgc_improvement_percent', true) + shgc_improvement_percent.setDisplayName('SHGC improvement Percentage (%)') + shgc_improvement_percent.setDefaultValue(20) + args << shgc_improvement_percent + + return args + end + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # assign the user inputs to variables + u_value_improvement_percent = runner.getDoubleArgumentValue('u_value_improvement_percent', user_arguments) + shgc_improvement_percent = runner.getDoubleArgumentValue('shgc_improvement_percent', user_arguments) + + # replace simple glazing window parameters + materials = model.getMaterials + materials.each do |material| + if material.to_SimpleGlazing.is_initialized + material_type_glazingsimple = material.to_SimpleGlazing.get + + # get the original value for reporting + u_value_old = nil + shgc_old = nil + u_value_old = material_type_glazingsimple.uFactor + shgc_old = material_type_glazingsimple.solarHeatGainCoefficient + + # Update the values from user input + material_type_glazingsimple.setUFactor(material_type_glazingsimple.uFactor - material_type_glazingsimple.uFactor * u_value_improvement_percent * 0.01) + shgc_new = material_type_glazingsimple.setSolarHeatGainCoefficient(material_type_glazingsimple.solarHeatGainCoefficient - material_type_glazingsimple.solarHeatGainCoefficient * shgc_improvement_percent * 0.01) + + # get the updated value for reporting + u_value_new = nil + shgc_new = nil + u_value_new = material_type_glazingsimple.uFactor + shgc_new = material_type_glazingsimple.solarHeatGainCoefficient + + # report initial condition of model + runner.registerInitialCondition("The building started with #{u_value_old} U-value, #{shgc_old} SHGC.") + + # report final condition of model + runner.registerFinalCondition("The building finished with #{u_value_new} U-value, #{shgc_new} SHGC.") + + end + end + + return true + end +end + +# register the measure to be used by the application +ImproveSimpleGlazingByPercentage.new.registerWithApplication diff --git a/lib/measures/improve_simple_glazing_by_percentage/measure.xml b/lib/measures/improve_simple_glazing_by_percentage/measure.xml new file mode 100644 index 0000000..339be96 --- /dev/null +++ b/lib/measures/improve_simple_glazing_by_percentage/measure.xml @@ -0,0 +1,70 @@ + + 3.0 + improve_simple_glazing_by_percentage + 3be83df0-8db1-47a8-8b26-aa12f9f17116 + b7ad923a-5993-42c4-9f79-b14d90838cc2 + 20180717T215711Z + 9C8A26EB + ImproveSimpleGlazingByPercentage + improve_simple_glazing_by_percentage + + + + + u_value_improvement_percent + U-value Improvement Percentage (%) + Double + true + false + 20 + + + shgc_improvement_percent + SHGC improvement Percentage (%) + Double + true + false + 20 + + + + + + Envelope.Fenestration + + + + Measure Type + ModelMeasure + string + + + Intended Software Tool + Apply Measure Now + string + + + Intended Software Tool + OpenStudio Application + string + + + Intended Software Tool + Parametric Analysis Tool + string + + + + + + OpenStudio + 2.1.0 + 2.1.0 + + measure.rb + rb + script + 8ED0C957 + + + diff --git a/lib/measures/reduce_water_use_by_percentage/measure.rb b/lib/measures/reduce_water_use_by_percentage/measure.rb new file mode 100644 index 0000000..1df5e0f --- /dev/null +++ b/lib/measures/reduce_water_use_by_percentage/measure.rb @@ -0,0 +1,61 @@ +# frozen_string_literal: true + +# see the URL below for information on how to write OpenStudio measures +# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ + +# start the measure +class ReduceWaterUseByPercentage < OpenStudio::Ruleset::ModelUserScript + # human readable name + def name + return 'reduce_water_use_by_percentage' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # make an argument for water use reduction percentage + water_use_reduction_percent = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('water_use_reduction_percent', true) + water_use_reduction_percent.setDisplayName('Water Use Reduction Percentage (%)') + water_use_reduction_percent.setDefaultValue(20) + args << water_use_reduction_percent + + return args + end + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # assign the user inputs to variables + water_use_reduction_percent = runner.getDoubleArgumentValue('water_use_reduction_percent', user_arguments) + + # replace water use parameters + model.getWaterUseEquipments.each do |water_use_equipment| + # get the original value for reporting + peak_flow_rate_si_old = water_use_equipment.waterUseEquipmentDefinition.peakFlowRate # m^3/s + + # Update the values from user input + water_use_equipment.waterUseEquipmentDefinition.setPeakFlowRate(water_use_equipment.waterUseEquipmentDefinition.peakFlowRate - water_use_equipment.waterUseEquipmentDefinition.peakFlowRate * water_use_reduction_percent * 0.01) + + # get the updated value for reporting + peak_flow_rate_si_new = water_use_equipment.waterUseEquipmentDefinition.peakFlowRate # m^3/s + + # report initial condition of model + runner.registerInitialCondition("Peak flow rate is #{peak_flow_rate_si_old} m^3/s..") + + # report final condition of model + runner.registerFinalCondition("Peak flow rate is #{peak_flow_rate_si_new} m^3/s.") + end + + return true + end +end + +# register the measure to be used by the application +ReduceWaterUseByPercentage.new.registerWithApplication diff --git a/lib/measures/reduce_water_use_by_percentage/measure.xml b/lib/measures/reduce_water_use_by_percentage/measure.xml new file mode 100644 index 0000000..0aa9976 --- /dev/null +++ b/lib/measures/reduce_water_use_by_percentage/measure.xml @@ -0,0 +1,62 @@ + + 3.0 + reduce_water_use_by_percentage + 3be83df0-8db1-47a8-8b26-aa12f9f17116 + 725f3c65-c760-44ad-bccd-919e682bf38a + 20180717T215712Z + 759A1208 + ReduceWaterUseByPercentage + reduce_water_use_by_percentage + + + + + water_use_reduction_percent + Water Use Reduction Percentage (%) + Double + true + false + 20 + + + + + + Service Water Heating.Water Use + + + + Measure Type + ModelMeasure + string + + + Intended Software Tool + Apply Measure Now + string + + + Intended Software Tool + OpenStudio Application + string + + + Intended Software Tool + Parametric Analysis Tool + string + + + + + + OpenStudio + 2.1.0 + 2.1.0 + + measure.rb + rb + script + 1642ADCF + + + diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/measure.rb b/lib/measures/replace_hvac_with_gshp_and_doas/measure.rb new file mode 100644 index 0000000..708d75f --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/measure.rb @@ -0,0 +1,511 @@ +# frozen_string_literal: true + +# see the URL below for information on how to write OpenStudio measures +# http://openstudio.nrel.gov/openstudio-measure-writing-guide + +# see the URL below for information on using life cycle cost objects in OpenStudio +# http://openstudio.nrel.gov/openstudio-life-cycle-examples + +# see the URL below for access to C++ documentation on model objects (click on "model" in the main window to view model objects) +# http://openstudio.nrel.gov/sites/openstudio.nrel.gov/files/nv_data/cpp_documentation_it/model/html/namespaces.html + +# load OpenStudio measure libraries +# require "#{File.dirname(__FILE__)}/resources/OsLib_AedgMeasures" +require "#{File.dirname(__FILE__)}/resources/OsLib_HelperMethods" +require "#{File.dirname(__FILE__)}/resources/OsLib_HVAC" +require "#{File.dirname(__FILE__)}/resources/OsLib_Schedules" + +# start the measure +class ReplaceHVACWithGSHPAndDOAS < OpenStudio::Ruleset::ModelUserScript + # define the name that a user will see, this method may be deprecated as + # the display name in PAT comes from the name field in measure.xml + def name + return 'Replace HVAC with GSHP and DOAS' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # Create a list of the names and handles of space types + # used in the building. + used_space_type_handles = OpenStudio::StringVector.new + used_space_type_names = OpenStudio::StringVector.new + model.getSpaceTypes.sort.each do |space_type| + if !space_type.spaces.empty? # only show space types used in the building + used_space_type_handles << space_type.handle.to_s + used_space_type_names << space_type.name.to_s + end + end + + # Make an argument for plenum space type + ceiling_return_plenum_space_type = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('ceiling_return_plenum_space_type', used_space_type_handles, used_space_type_names, false) + ceiling_return_plenum_space_type.setDisplayName('This space type should be part of a ceiling return air plenum.') + args << ceiling_return_plenum_space_type + + # Make a bool argument to edit/not edit each space type + model.getSpaceTypes.sort.each do |space_type| + if !space_type.spaces.empty? # only show space types used in the building + space_type_to_edit = OpenStudio::Ruleset::OSArgument.makeBoolArgument(space_type.name.get.to_s, false) + # Make a bool argument for this space type + space_type_to_edit.setDisplayName("Add #{space_type.name.get} space type to GSHP system?") + space_type_to_edit.setDefaultValue(false) + args << space_type_to_edit + end + end + + # Heating COP of GSHP + gshp_htg_cop = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('gshp_htg_cop', false) + gshp_htg_cop.setDisplayName('GSHP DX Heating Coil Heating COP') + gshp_htg_cop.setDefaultValue(4.0) + args << gshp_htg_cop + + # Cooling EER of GSHP + gshp_clg_eer = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('gshp_clg_eer', false) + gshp_clg_eer.setDisplayName('GSHP DX Cooling Coil Cooling EER') + gshp_clg_eer.setDefaultValue(14) + args << gshp_clg_eer + + # GSHP Fan Type PSC or ECM + fan_choices = OpenStudio::StringVector.new + fan_choices << 'PSC' + fan_choices << 'ECM' + gshp_fan_type = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('gshp_fan_type', fan_choices, true) # note ECM fan type may correspond to different set of heat pump performance curves + gshp_fan_type.setDisplayName('GSHP Fan Type: PSC or ECM?') + gshp_fan_type.setDefaultValue('PSC') + args << gshp_fan_type + + # Condenser Loop Cooling Temperature + # condLoopCoolingTemp = OpenStudio::Ruleset::OSArgument::makeDoubleArgument("condLoopCoolingTemp",false) + # condLoopCoolingTemp.setDisplayName("Condenser Loop Cooling Temperature (F)") + # condLoopCoolingTemp.setDefaultValue(90) + # args << condLoopCoolingTemp + + # Condenser Loop Heating Temperature + # condLoopHeatingTemp = OpenStudio::Ruleset::OSArgument::makeDoubleArgument("condLoopHeatingTemp",false) + # condLoopHeatingTemp.setDisplayName("Condenser Loop Heating Temperature (F)") + # condLoopHeatingTemp.setDefaultValue(60) + # args << condLoopHeatingTemp + + # Vertical Bore HX + building_area = model.getBuilding.floorArea + building_cool_ton = building_area * 10.7639 / 500 # 500sf/ton estimated + bore_hole_no = OpenStudio::Ruleset::OSArgument.makeIntegerArgument('bore_hole_no', false) + bore_hole_no.setDisplayName('Number of Bore Holes') + bore_hole_no.setDefaultValue(building_cool_ton.to_i) + args << bore_hole_no + + bore_hole_length = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('bore_hole_length', false) + bore_hole_length.setDisplayName('Bore Hole Length (ft)') + bore_hole_length.setDefaultValue(200) + args << bore_hole_length + + bore_hole_radius = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('bore_hole_radius', false) + bore_hole_radius.setDisplayName('Bore Hole Radius (inch)') + bore_hole_radius.setDefaultValue(6.0) + args << bore_hole_radius + + ground_k_value = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('ground_k_value', false) + ground_k_value.setDisplayName('Ground Conductivity (Btu/hr.F.R') + ground_k_value.setDefaultValue(0.75) + args << ground_k_value + + grout_k_value = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('grout_k_value', false) + grout_k_value.setDisplayName('Grout Conductivity (Btu/hr.F.R') + grout_k_value.setDefaultValue(0.75) + args << grout_k_value + + chs = OpenStudio::StringVector.new + chs << 'Yes' + chs << 'No' + supplemental_boiler = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('supplemental_boiler', chs, true) + supplemental_boiler.setDisplayName('Supplemental Heating Boiler?') + supplemental_boiler.setDefaultValue('No') + args << supplemental_boiler + + # Boiler Capacity + boiler_cap = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('boiler_cap', false) + boiler_cap.setDisplayName('boiler normal capacity (MBtuh)') + boiler_cap.setDefaultValue(500.0) + args << boiler_cap + + # Boiler Efficiency + boiler_eff = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('boiler_eff', false) + boiler_eff.setDisplayName('Boiler Thermal Efficiency') + boiler_eff.setDefaultValue(0.9) + args << boiler_eff + + # Boiler fuel Type + fuel_choices = OpenStudio::StringVector.new + fuel_choices << 'NaturalGas' + fuel_choices << 'PropaneGas' + fuel_choices << 'FuelOil#1' + fuel_choices << 'FuelOil#2' + fuel_choices << 'Electricity' + boiler_fuel_type = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('boiler_fuel_type', fuel_choices, false) + boiler_fuel_type.setDisplayName('Boiler Fuel Type') + boiler_fuel_type.setDefaultValue('NaturalGas') + args << boiler_fuel_type + + # boiler Hot water supply temperature + boiler_hw_st = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('boiler_hw_st', false) + boiler_hw_st.setDisplayName('Boiler Design Heating Water Outlet Temperature (F)') + boiler_hw_st.setDefaultValue(120) + args << boiler_hw_st + + # DOAS Fan Type + doas_fan_choices = OpenStudio::StringVector.new + doas_fan_choices << 'Constant' + doas_fan_choices << 'Variable' + doas_fan_type = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doas_fan_type', doas_fan_choices, true) + doas_fan_type.setDisplayName('DOAS Fan Flow Control - Variable means DCV controls') + doas_fan_type.setDefaultValue('Variable') + args << doas_fan_type + + # DOAS Energy Recovery + erv_choices = OpenStudio::StringVector.new + erv_choices << 'plate w/o economizer lockout' + erv_choices << 'plate w/ economizer lockout' + erv_choices << 'rotary wheel w/o economizer lockout' + erv_choices << 'rotary wheel w/ economizer lockout' + erv_choices << 'none' + doas_erv = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doas_erv', erv_choices, true) + doas_erv.setDisplayName('DOAS Energy Recovery?') + doas_erv.setDefaultValue('none') + args << doas_erv + + # DOAS Evaporative Cooling + evap_choices = OpenStudio::StringVector.new + evap_choices << 'Direct Evaporative Cooler' + evap_choices << 'none' + doas_evap = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doas_evap', evap_choices, true) + doas_evap.setDisplayName('DOAS Direct Evaporative Cooling?') + doas_evap.setDefaultValue('none') + args << doas_evap + + # DOAS DX Cooling + doas_dx_eer = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('doas_dx_eer', false) + doas_dx_eer.setDisplayName('DOAS DX Cooling EER') + doas_dx_eer.setDefaultValue(10.0) + args << doas_dx_eer + + # make an argument for material and installation cost + # todo - I would like to split the costing out to the air loops weighted by area of building served vs. just sticking it on the building + cost_total_hvac_system = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('cost_total_hvac_system', true) + cost_total_hvac_system.setDisplayName('Total Cost for HVAC System ($).') + cost_total_hvac_system.setDefaultValue(0.0) + args << cost_total_hvac_system + + # make an argument to remove existing costs + remake_schedules = OpenStudio::Ruleset::OSArgument.makeBoolArgument('remake_schedules', true) + remake_schedules.setDisplayName('Apply recommended availability and ventilation schedules for air handlers?') + remake_schedules.setDefaultValue(true) + args << remake_schedules + + return args + end # end the arguments method + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # Use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # Assign the user inputs to variables + space_type_to_edits_hash = {} + model.getSpaceTypes.each do |space_type| + if !space_type.spaces.empty? + space_type_to_edit = runner.getBoolArgumentValue(space_type.name.get.to_s, user_arguments) + space_type_to_edits_hash[space_type] = space_type_to_edit + end + end + + bore_hole_no = runner.getIntegerArgumentValue('bore_hole_no', user_arguments) + bore_hole_length = runner.getDoubleArgumentValue('bore_hole_length', user_arguments) + bore_hole_radius = runner.getDoubleArgumentValue('bore_hole_radius', user_arguments) + ground_k_value = runner.getDoubleArgumentValue('ground_k_value', user_arguments) + grout_k_value = runner.getDoubleArgumentValue('grout_k_value', user_arguments) + supplemental_boiler = runner.getStringArgumentValue('supplemental_boiler', user_arguments) + + gshp_htg_cop = runner.getDoubleArgumentValue('gshp_htg_cop', user_arguments) + gshp_clg_eer = runner.getDoubleArgumentValue('gshp_clg_eer', user_arguments) + gshp_fan_type = runner.getStringArgumentValue('gshp_fan_type', user_arguments) + # condLoopCoolingTemp = runner.getDoubleArgumentValue("condLoopCoolingTemp",user_arguments) + # condLoopHeatingTemp = runner.getDoubleArgumentValue("condLoopHeatingTemp",user_arguments) + # coolingTowerWB = runner.getDoubleArgumentValue("coolingTowerWB",user_arguments) + # coolingTowerApproach= runner.getDoubleArgumentValue("coolingTowerApproach",user_arguments) + # coolingTowerDeltaT= runner.getDoubleArgumentValue("coolingTowerDeltaT",user_arguments) + boiler_cap = runner.getDoubleArgumentValue('boiler_cap', user_arguments) + boiler_eff = runner.getDoubleArgumentValue('boiler_eff', user_arguments) + boiler_fuel_type = runner.getStringArgumentValue('boiler_fuel_type', user_arguments) + boiler_hw_st = runner.getDoubleArgumentValue('boiler_hw_st', user_arguments) + doas_fan_type = runner.getStringArgumentValue('doas_fan_type', user_arguments) + doas_erv = runner.getStringArgumentValue('doas_erv', user_arguments) + doas_evap = runner.getStringArgumentValue('doas_evap', user_arguments) + doas_dx_eer = runner.getDoubleArgumentValue('doas_dx_eer', user_arguments) + + ### START INPUTS + # assign the user inputs to variables + ceiling_return_plenum_space_type = runner.getOptionalWorkspaceObjectChoiceValue('ceiling_return_plenum_space_type', user_arguments, model) + cost_total_hvac_system = runner.getDoubleArgumentValue('cost_total_hvac_system', user_arguments) + remake_schedules = runner.getBoolArgumentValue('remake_schedules', user_arguments) + # check that space_type was chosen and exists in model + ceiling_return_plenum_space_typeCheck = OsLib_HelperMethods.checkOptionalChoiceArgFromModelObjects(ceiling_return_plenum_space_type, 'ceiling_return_plenum_space_type', 'to_SpaceType', runner, user_arguments) + ceiling_return_plenum_space_typeCheck == false ? (return false) : (ceiling_return_plenum_space_type = ceiling_return_plenum_space_typeCheck['modelObject']) + # default building/ secondary space types + standardBuildingTypeTest = [] # ML Not used yet + # secondarySpaceTypeTest = ["Cafeteria", "Kitchen", "Gym", "Auditorium"] + standardBuildingTypeTest = ['Office'] # ML Not used yet + secondarySpaceTypeTest = [] # empty for office + primarySpaceType = 'Office' + if doas_fan_type == 'Variable' + primaryHVAC = { 'doas' => true, 'fan' => 'Variable', 'heat' => 'Gas', 'cool' => 'SingleDX' } + else + primaryHVAC = { 'doas' => true, 'fan' => 'Constant', 'heat' => 'Gas', 'cool' => 'SingleDX' } + end + secondaryHVAC = { 'fan' => 'None', 'heat' => 'None', 'cool' => 'None' } # ML not used for office; leave or empty? + zoneHVAC = 'GSHP' + chillerType = 'None' # set to none if chiller not used + radiantChillerType = 'None' # set to none if not radiant system + allHVAC = { 'primary' => primaryHVAC, 'secondary' => secondaryHVAC, 'zone' => zoneHVAC } + + ### END INPUTS + + # create a hash incorporating all user inputs on GSHP + parameters = { 'gshpCoolingEER' => gshp_clg_eer, + 'gshpHeatingCOP' => gshp_htg_cop, + 'gshpFanType' => gshp_fan_type, + 'groundKValue' => ground_k_value, + 'groutKValue' => grout_k_value, + 'boreHoleNo' => bore_hole_no, + 'boreHoleLength' => bore_hole_length, + 'boreHoleRadius' => bore_hole_radius, + 'supplementalBoiler' => supplemental_boiler, + 'boilerCap' => boiler_cap, + 'boilerEff' => boiler_eff, + 'boilerFuelType' => boiler_fuel_type, + 'boilerHWST' => boiler_hw_st, + 'doasFanType' => doas_fan_type, + 'doasDXEER' => doas_dx_eer, + 'doasERV' => doas_erv, + 'doasEvap' => doas_evap } + + ### START SORT ZONES + options = { 'standardBuildingTypeTest' => standardBuildingTypeTest, # ML Not used yet + 'secondarySpaceTypeTest' => secondarySpaceTypeTest, + 'ceiling_return_plenum_space_type' => ceiling_return_plenum_space_type } + zonesSorted = OsLib_HVAC.sortZones(model, runner, options, space_type_to_edits_hash) + zonesPrimary = zonesSorted['zonesPrimary'] + zonesSecondary = zonesSorted['zonesSecondary'] + zonesPlenum = zonesSorted['zonesPlenum'] + zonesUnconditioned = zonesSorted['zonesUnconditioned'] + ### END SORT ZONES + + ### START REPORT INITIAL CONDITIONS + OsLib_HVAC.reportConditions(model, runner, 'initial') + ### END REPORT INITIAL CONDITIONS + + ### START ASSIGN HVAC SCHEDULES + options = { 'primarySpaceType' => primarySpaceType, + 'allHVAC' => allHVAC, + 'remake_schedules' => remake_schedules } + schedulesHVAC = OsLib_HVAC.assignHVACSchedules(model, runner, options) + # assign schedules + primary_SAT_schedule = schedulesHVAC['primary_sat'] + building_HVAC_schedule = schedulesHVAC['hvac'] + building_ventilation_schedule = schedulesHVAC['ventilation'] + make_hot_water_plant = false + unless schedulesHVAC['hot_water'].nil? + hot_water_setpoint_schedule = schedulesHVAC['hot_water'] + make_hot_water_plant = true + end + make_chilled_water_plant = false + unless schedulesHVAC['chilled_water'].nil? + chilled_water_setpoint_schedule = schedulesHVAC['chilled_water'] + make_chilled_water_plant = true + end + make_radiant_hot_water_plant = false + unless schedulesHVAC['radiant_hot_water'].nil? + radiant_hot_water_setpoint_schedule = schedulesHVAC['radiant_hot_water'] + make_radiant_hot_water_plant = true + end + make_radiant_chilled_water_plant = false + unless schedulesHVAC['radiant_chilled_water'].nil? + radiant_chilled_water_setpoint_schedule = schedulesHVAC['radiant_chilled_water'] + make_radiant_chilled_water_plant = true + end + unless schedulesHVAC['hp_loop'].nil? + heat_pump_loop_setpoint_schedule = schedulesHVAC['hp_loop'] + end + unless schedulesHVAC['hp_loop_cooling'].nil? + heat_pump_loop_cooling_setpoint_schedule = schedulesHVAC['hp_loop_cooling'] + end + unless schedulesHVAC['hp_loop_heating'].nil? + heat_pump_loop_heating_setpoint_schedule = schedulesHVAC['hp_loop_heating'] + end + unless schedulesHVAC['mean_radiant_heating'].nil? + mean_radiant_heating_setpoint_schedule = schedulesHVAC['mean_radiant_heating'] + end + unless schedulesHVAC['mean_radiant_cooling'].nil? + mean_radiant_cooling_setpoint_schedule = schedulesHVAC['mean_radiant_cooling'] + end + ### END ASSIGN HVAC SCHEDULES + runner.registerInfo("number of bore holes are #{model.getBuilding.floorArea} m2") + # START REMOVE EQUIPMENT + options = {} + options['zonesPrimary'] = zonesPrimary + if options['zonesPrimary'].empty? + runner.registerInfo('User did not pick any zones to be added to GSHP system, no changes to the model were made.') + else + OsLib_HVAC.removeEquipment(model, runner, options) + end + ### END REMOVE EQUIPMENT + + ### START CREATE NEW PLANTS + # create new plants + # hot water plant + if make_hot_water_plant + hot_water_plant = OsLib_HVAC.createHotWaterPlant(model, runner, hot_water_setpoint_schedule, 'Hot Water', parameters) + end + # chilled water plant + if make_chilled_water_plant + chilled_water_plant = OsLib_HVAC.createChilledWaterPlant(model, runner, chilled_water_setpoint_schedule, 'Chilled Water', chillerType) + end + # radiant hot water plant + if make_radiant_hot_water_plant + radiant_hot_water_plant = OsLib_HVAC.createHotWaterPlant(model, runner, radiant_hot_water_setpoint_schedule, 'Radiant Hot Water') + end + # chilled water plant + if make_radiant_chilled_water_plant + radiant_chilled_water_plant = OsLib_HVAC.createChilledWaterPlant(model, runner, radiant_chilled_water_setpoint_schedule, 'Radiant Chilled Water', radiantChillerType) + end + # condenser loop + # need condenser loop if there is a water-cooled chiller or if there is a water source heat pump loop + options = {} + options['zonesPrimary'] = zonesPrimary + options['zoneHVAC'] = zoneHVAC + if zoneHVAC.include? 'SHP' + options['loop_setpoint_schedule'] = heat_pump_loop_setpoint_schedule + options['cooling_setpoint_schedule'] = heat_pump_loop_cooling_setpoint_schedule + options['heating_setpoint_schedule'] = heat_pump_loop_heating_setpoint_schedule + end + if options['zonesPrimary'].empty? + # runner.registerWarning("User did not pick any space types to be added to the WSHP system, no changes to the model were made") + condenserLoops = {} + # condenserLoops["condenser_loop"] ={} + else + condenserLoops = OsLib_HVAC.createCondenserLoop(model, runner, options, parameters) + end + unless condenserLoops['condenser_loop'].nil? + condenser_loop = condenserLoops['condenser_loop'] + end + unless condenserLoops['heat_pump_loop'].nil? + heat_pump_loop = condenserLoops['heat_pump_loop'] + end + ### END CREATE NEW PLANTS + + ### START CREATE PRIMARY AIRLOOPS + # populate inputs hash for create primary airloops method + options = {} + options['zonesPrimary'] = zonesPrimary + options['primaryHVAC'] = primaryHVAC + options['zoneHVAC'] = zoneHVAC + if primaryHVAC['doas'] + options['hvac_schedule'] = building_ventilation_schedule + options['ventilation_schedule'] = building_ventilation_schedule + else + # primary HVAC is multizone VAV + if zoneHVAC == 'DualDuct' + # primary system is a multizone VAV that cools only (primary system ventilation schedule is set to always off; hvac set to always on) + options['hvac_schedule'] = model.alwaysOnDiscreteSchedule + else + # primary system is multizone VAV that cools and ventilates + options['hvac_schedule'] = building_HVAC_schedule + options['ventilation_schedule'] = building_ventilation_schedule + end + end + options['primary_sat_schedule'] = primary_SAT_schedule + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + primary_airloops = OsLib_HVAC.createPrimaryAirLoops(model, runner, options, parameters) + ### END CREATE PRIMARY AIRLOOPS + + ### START CREATE SECONDARY AIRLOOPS + # populate inputs hash for create primary airloops method + options = {} + options['zonesSecondary'] = zonesSecondary + options['secondaryHVAC'] = secondaryHVAC + options['hvac_schedule'] = building_HVAC_schedule + options['ventilation_schedule'] = building_ventilation_schedule + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + secondary_airloops = OsLib_HVAC.createSecondaryAirLoops(model, runner, options) + ### END CREATE SECONDARY AIRLOOPS + + ### START ASSIGN PLENUMS + options = { 'zonesPrimary' => zonesPrimary, 'zonesPlenum' => zonesPlenum } + zone_plenum_hash = OsLib_HVAC.validateAndAddPlenumZonesToSystem(model, runner, options) + ### END ASSIGN PLENUMS + + ### START CREATE PRIMARY ZONE EQUIPMENT + options = {} + options['zonesPrimary'] = zonesPrimary + options['zoneHVAC'] = zoneHVAC + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + if zoneHVAC.include? 'SHP' + options['heat_pump_loop'] = heat_pump_loop + end + if zoneHVAC == 'DualDuct' + options['ventilation_schedule'] = building_ventilation_schedule + end + if zoneHVAC == 'Radiant' + options['radiant_hot_water_plant'] = radiant_hot_water_plant + options['radiant_chilled_water_plant'] = radiant_chilled_water_plant + options['mean_radiant_heating_setpoint_schedule'] = mean_radiant_heating_setpoint_schedule + options['mean_radiant_cooling_setpoint_schedule'] = mean_radiant_cooling_setpoint_schedule + end + OsLib_HVAC.createPrimaryZoneEquipment(model, runner, options, parameters) + ### END CREATE PRIMARY ZONE EQUIPMENT + + # START ADD DCV + options = {} + unless zoneHVAC == 'DualDuct' + options['primary_airloops'] = primary_airloops + end + options['secondary_airloops'] = secondary_airloops + options['allHVAC'] = allHVAC + OsLib_HVAC.addDCV(model, runner, options) + # END ADD DCV + + # Add in lifecycle costs + expected_life = 25 + years_until_costs_start = 0 + costHVAC = cost_total_hvac_system + lcc_mat = OpenStudio::Model::LifeCycleCost.createLifeCycleCost('HVAC System', model.getBuilding, costHVAC, 'CostPerEach', 'Construction', expected_life, years_until_costs_start).get + + ### START REPORT FINAL CONDITIONS + OsLib_HVAC.reportConditions(model, runner, 'final') + ### END REPORT FINAL CONDITIONS + + return true + end # end the run method +end # end the measure + +# this allows the measure to be used by the application +ReplaceHVACWithGSHPAndDOAS.new.registerWithApplication diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/measure.xml b/lib/measures/replace_hvac_with_gshp_and_doas/measure.xml new file mode 100644 index 0000000..0dbc2ae --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/measure.xml @@ -0,0 +1,375 @@ + + 3.0 + replace_hvac_with_gshp_and_doas + 80d0e0e4-7cfc-4973-9656-8328e07f3434 + 88caed97-30b6-49a6-9704-1f716ba05878 + 20180126T015658Z + 87BA8B1E + ReplaceHVACWithGSHPAndDOAS + Replace HVAC with GSHP and DOAS + Measure replaces existing HVAC system (if any) with a Ground Source Heat Pump (GSHP) with DOAS HVAC system (one DOAS per floor). The GSHP with DOAS system (centralized DOAS, with zone level conditioning) is applied to all space types except storage spaces like stairwells, mechanical/electrical rooms etc. + Airloops are dedicated to ventilation (DOAS) and have constant or variable speed fan operation, gas furnace heating,single speed DX cooling and optional energy recovery and/or direct evaporative cooling. Conditioning is provided at the zone level with water sourced heat pumps with cycling fans. The heat pumps are connected to a plant loop supplied by a boiler and cooling tower. The heat pump loop floats between 70F and 90F. + + + ceiling_return_plenum_space_type + This space type should be part of a ceiling return air plenum. + Choice + false + false + + + gshp_htg_cop + GSHP DX Heating Coil Heating COP + Double + false + false + 4 + + + gshp_clg_eer + GSHP DX Cooling Coil Cooling EER + Double + false + false + 14 + + + gshp_fan_type + GSHP Fan Type: PSC or ECM? + Choice + true + false + PSC + + + PSC + PSC + + + ECM + ECM + + + + + bore_hole_no + Number of Bore Holes + Integer + false + false + 0 + + + bore_hole_length + Bore Hole Length (ft) + Double + false + false + 200 + + + bore_hole_radius + Bore Hole Radius (inch) + Double + false + false + 6 + + + ground_k_value + Ground Conductivity (Btu/hr.F.R + Double + false + false + 0.75 + + + grout_k_value + Grout Conductivity (Btu/hr.F.R + Double + false + false + 0.75 + + + supplemental_boiler + Supplemental Heating Boiler? + Choice + true + false + No + + + Yes + Yes + + + No + No + + + + + boiler_cap + boiler normal capacity (MBtuh) + Double + false + false + 500 + + + boiler_eff + Boiler Thermal Efficiency + Double + false + false + 0.9 + + + boiler_fuel_type + Boiler Fuel Type + Choice + false + false + NaturalGas + + + NaturalGas + NaturalGas + + + PropaneGas + PropaneGas + + + FuelOil#1 + FuelOil#1 + + + FuelOil#2 + FuelOil#2 + + + Electricity + Electricity + + + + + boiler_hw_st + Boiler Design Heating Water Outlet Temperature (F) + Double + false + false + 120 + + + doas_fan_type + DOAS Fan Flow Control - Variable means DCV controls + Choice + true + false + Variable + + + Constant + Constant + + + Variable + Variable + + + + + doas_erv + DOAS Energy Recovery? + Choice + true + false + none + + + plate w/o economizer lockout + plate w/o economizer lockout + + + plate w/ economizer lockout + plate w/ economizer lockout + + + rotary wheel w/o economizer lockout + rotary wheel w/o economizer lockout + + + rotary wheel w/ economizer lockout + rotary wheel w/ economizer lockout + + + none + none + + + + + doas_evap + DOAS Direct Evaporative Cooling? + Choice + true + false + none + + + Direct Evaporative Cooler + Direct Evaporative Cooler + + + none + none + + + + + doas_dx_eer + DOAS DX Cooling EER + Double + false + false + 10 + + + cost_total_hvac_system + Total Cost for HVAC System ($). + Double + true + false + 0 + + + remake_schedules + Apply recommended availability and ventilation schedules for air handlers? + Boolean + true + false + true + + + true + true + + + false + false + + + + + + + + HVAC.Whole System + + + + Uses SketchUp API + false + boolean + + + Measure Type + ModelMeasure + string + + + + + AedgOfficeHvacWshpDoas_Test.rb + rb + test + 6E9C8413 + + + AEDG_HVAC_GenericTestModel_0225_a.osm + osm + test + 762BE6DA + + + measure-backup-1.rb + rb + test + 7DA88440 + + + measure-backup.rb + rb + test + 5EC116F9 + + + test_arguments.csv + csv + test + 2BA7A96A + + + OsLib_AedgMeasures.rb + rb + resource + 400D07BE + + + OsLib_Constructions.rb + rb + resource + 1DBDBCB3 + + + OsLib_Geometry.rb + rb + resource + 730B5D71 + + + OsLib_HelperMethods.rb + rb + resource + 15A9730B + + + OsLib_LightingAndEquipment.rb + rb + resource + E76DE29C + + + OsLib_Schedules.rb + rb + resource + C53CDDCD + + + + OpenStudio + 1.3.0 + 1.8.0 + + measure.rb + rb + script + 22CEA89A + + + ReplaceHVACwithGSHPandDOAS_Test.rb + rb + test + CFB832B1 + + + OsLib_HVAC.rb + rb + resource + 4379F216 + + + diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_AedgMeasures.rb b/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_AedgMeasures.rb new file mode 100644 index 0000000..0449d71 --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_AedgMeasures.rb @@ -0,0 +1,454 @@ +# frozen_string_literal: true + +module OsLib_AedgMeasures + def self.getClimateZoneNumber(model, runner) + # get ashrae climate zone from model + ashraeClimateZone = '' + climateZones = model.getClimateZones + climateZones.climateZones.each do |climateZone| + if climateZone.institution == 'ASHRAE' + ashraeClimateZone = climateZone.value + runner.registerInfo("Using ASHRAE Climate zone #{ashraeClimateZone} for AEDG recommendations.") + end + end + + if ashraeClimateZone == '' # should this be not applicable or error? + runner.registerError("Please assign an ASHRAE Climate Zone to your model using the site tab in the OpenStudio application. The measure can't make AEDG recommendations without this information.") + return false # note - for this to work need to check for false in measure.rb and add return false there as well. + else + climateZoneNumber = ashraeClimateZone.split(//).first + end + + # expected climate zone number should be 1 through 8 + if !['1', '2', '3', '4', '5', '6', '7', '8'].include? climateZoneNumber + runner.registerError('ASHRAE climate zone number is not within expected range of 1 to 8.') + return false # note - for this to work need to check for false in measure.rb and add return false there as well. + end + + result = climateZoneNumber + # don't add return false here, need to catch errors above + end # end of def OsLib_AedgMeasures.getClimateZoneNumber(model,runner) + + def self.getLongHowToTips(guide, aedgTips, runner) + # get tips + if guide == 'K12' + hash = OsLib_AedgMeasures.getK12Tips + elsif guide == 'SmMdOff' + hash = OsLib_AedgMeasures.getSmMdOffTips + else + runner.registerError("#{guide} is an invalid value. Can't generate how to tip messages.") + return false # note - for this to work need to check for false in measure.rb and add return false there as well. + # this should only happen if measure writer passes bad values to getLongHowToTips + end + + # array for info string + string = [] + + # create info messages + aedgTips.each do |aedgtip| + if hash[aedgtip] != hash[0] + string << hash[aedgtip] + else + runner.registerWarning("#{aedgtip} is an invalid key for tip hash. Can't generate tip.") + end + end + + # see if expected number of messages created + if aedgTips.size != string.size + runner.registerWarning('One more more messages were not created.') + end + + result = "#{hash[0]}: #{string.join(', ')}." # hash[0] bad key will return default value + # don't add return false here, need to catch errors above + end # end of def OsLib_AedgMeasures.getClimateZoneNumber(model,runner) + + # hash of how to tips for K-12 school AEDG + def self.getK12Tips + # envelope tips + @aedgK12HowToTipHash = Hash.new('K-12 Schools AEDG How to Implement Recommendations') + @aedgK12HowToTipHash['EN01'] = 'EN1 Cool Roofs' + @aedgK12HowToTipHash['EN02'] = 'EN2 Roofs-Insulation Entirely above Deck' + @aedgK12HowToTipHash['EN03'] = 'EN3 Roofs-Attics, and Other Roofs' + @aedgK12HowToTipHash['EN04'] = 'EN4 Roofs-Metal Buildings' + @aedgK12HowToTipHash['EN05'] = 'EN5 Walls-Mass' + @aedgK12HowToTipHash['EN06'] = 'EN6 Walls-Steel Framed' + @aedgK12HowToTipHash['EN07'] = 'EN7 Walls-Wood Frame and Other' + @aedgK12HowToTipHash['EN08'] = 'EN8 Walls-Metal Building' + @aedgK12HowToTipHash['EN09'] = 'EN9 Below-Grade Walls' + @aedgK12HowToTipHash['EN10'] = 'EN10 Floors-Mass' + @aedgK12HowToTipHash['EN11'] = 'EN11 Floors-Metal Joist or Wood Joist/Wood Frame' + @aedgK12HowToTipHash['EN12'] = 'EN12 Slab-on-Grade Floors-Unheated' + @aedgK12HowToTipHash['EN13'] = 'EN13 Slab-on-Grade Floors-Heated' + @aedgK12HowToTipHash['EN14'] = 'EN14 Slab Edge Insulation' + @aedgK12HowToTipHash['EN15'] = 'EN15 Doors-Opaque, Swinging' + @aedgK12HowToTipHash['EN16'] = 'EN16 Doors-Opaque, Roll-Up, or Sliding' + @aedgK12HowToTipHash['EN17'] = 'EN17 Air Infiltration Control' + @aedgK12HowToTipHash['EN18'] = 'EN18 Vestibules' + @aedgK12HowToTipHash['EN19'] = 'EN19 Alternative Constructions' + @aedgK12HowToTipHash['EN20'] = 'EN20 Truss Heel Heights' + @aedgK12HowToTipHash['EN21'] = 'EN21 Moisture Control' + @aedgK12HowToTipHash['EN22'] = 'EN22 Thermal Bridging-Opaque Components' + @aedgK12HowToTipHash['EN23'] = 'EN23 Thermal Bridging-Fenestration' + @aedgK12HowToTipHash['EN24'] = 'EN24 Fenestration Descriptions' + @aedgK12HowToTipHash['EN25'] = 'EN25 View Window-to Floor Area Ratio (VFR)' + @aedgK12HowToTipHash['EN26'] = 'EN26 Unwanted Solar Heat Gain Is Most Effectively Controlled on the Outside of the Building' + @aedgK12HowToTipHash['EN27'] = 'EN27 Operable versus Fixed Windows' + @aedgK12HowToTipHash['EN28'] = 'EN28 Building Form and Window Orientation' + @aedgK12HowToTipHash['EN29'] = 'EN29 Glazing' + @aedgK12HowToTipHash['EN30'] = 'EN30 Obstructions and Planting' + @aedgK12HowToTipHash['EN31'] = 'EN31 Window Orientation' + @aedgK12HowToTipHash['EN32'] = 'EN32 Passive Solar' + @aedgK12HowToTipHash['EN33'] = 'EN33 Glazing' + + # daylighting tips + @aedgK12HowToTipHash['DL01'] = 'DL1 General Principles' + @aedgK12HowToTipHash['DL02'] = 'DL2 Consider Daylighting Early in the Design Process' + @aedgK12HowToTipHash['DL03'] = 'DL3 Space Types' + @aedgK12HowToTipHash['DL04'] = 'DL4 How to Select Daylighting Strategies' + @aedgK12HowToTipHash['DL05'] = 'DL5 Recommended Daylighting Fenestration-to-Floor Area Ratios' + @aedgK12HowToTipHash['DL06'] = 'DL6 View Windows Separate from Daylighting Strategy' + @aedgK12HowToTipHash['DL07'] = 'DL7 Lighting Design Criteria' + @aedgK12HowToTipHash['DL08'] = 'DL8 Use Daylighting Analysis Tools to Optimize Design' + @aedgK12HowToTipHash['DL09'] = 'DL9 Building Orientation' + @aedgK12HowToTipHash['DL10'] = 'DL10 Ceiling Height' + @aedgK12HowToTipHash['DL11'] = 'DL11 Outdoor Surface Reflectance' + @aedgK12HowToTipHash['DL12'] = 'DL12 Eliminate Direct Beam Radiation' + @aedgK12HowToTipHash['DL13'] = 'DL13 Daylighting Control for Audio-Visual (AV) Projection Activities' + @aedgK12HowToTipHash['DL14'] = 'DL14 Interior Finishes for Daylighting' + @aedgK12HowToTipHash['DL15'] = 'DL15 Calibration and Commissioning' + @aedgK12HowToTipHash['DL16'] = 'DL16 Dimming Controls' + @aedgK12HowToTipHash['DL17'] = 'DL17 Photosensor Placement and Lighting Layout' + @aedgK12HowToTipHash['DL18'] = 'DL18 Photosensor Specifications' + @aedgK12HowToTipHash['DL19'] = 'DL19 Select Compatible Light Fixtures' + @aedgK12HowToTipHash['DL20'] = 'DL20 Sidelighting Patterns' + @aedgK12HowToTipHash['DL21'] = 'DL21 South-Facing Classrooms-Configuration of Apertures' + @aedgK12HowToTipHash['DL22'] = 'DL22 South-Facing Classrooms-Glazing Area and Fenestration Type' + @aedgK12HowToTipHash['DL23'] = 'DL23 View Glazing and VTs' + @aedgK12HowToTipHash['DL24'] = 'DL24 South-Facing Classrooms-Make Light Shelf Durable and Reflective' + @aedgK12HowToTipHash['DL25'] = 'DL25 North-Facing Classroom-Configuration of Apertures' + @aedgK12HowToTipHash['DL26'] = 'DL26 North-Facing Classroom-Glazing Area and Fenestration Type' + @aedgK12HowToTipHash['DL27'] = 'DL27 South-and North-Facing Classrooms-Sloped Ceilings' + @aedgK12HowToTipHash['DL28'] = 'DL28 South-and North-Facing Classrooms-Recognize the Limits of Side Daylighting' + @aedgK12HowToTipHash['DL29'] = 'DL29 Classroom Toplighting Pattern' + @aedgK12HowToTipHash['DL30'] = 'DL30 Sizing the Roof Monitors' + @aedgK12HowToTipHash['DL31'] = 'DL31 Overhang for Roof Monitor' + @aedgK12HowToTipHash['DL32'] = 'DL32 Use Light-Colored Roofing in Front of Monitors' + @aedgK12HowToTipHash['DL33'] = 'DL33 Use Baffles to Block Direct Beam Radiation and Diffuse Light' + @aedgK12HowToTipHash['DL34'] = 'DL34 Minimize Contrast at Well-Ceiling Intersection' + @aedgK12HowToTipHash['DL35'] = 'DL35 Address the Monitor Design' + @aedgK12HowToTipHash['DL36'] = 'DL36 Let the Heat Stratify' + @aedgK12HowToTipHash['DL37'] = 'DL37 Minimize the Depth of the Ceiling Cavity' + @aedgK12HowToTipHash['DL38'] = 'DL38 Classroom Sidelighting Plus Toplighting Pattern' + @aedgK12HowToTipHash['DL39'] = 'DL39 Gym Toplighting Overview' + @aedgK12HowToTipHash['DL40'] = 'DL40 Gym Toplighting Sizing' + @aedgK12HowToTipHash['DL41'] = 'DL41 Gym Toplighting Using South-Facing Roof Monitors' + @aedgK12HowToTipHash['DL42'] = 'DL42 Gym Toplighting in Combination with North-and South-Facing Sidelighting' + + # electric lighting tips + @aedgK12HowToTipHash['EL01'] = 'EL1 Light-Colored Interior Finishes' + @aedgK12HowToTipHash['EL02'] = 'EL2 Color Rendering Index' + @aedgK12HowToTipHash['EL03'] = 'EL3 Color Temperature' + @aedgK12HowToTipHash['EL04'] = 'EL4 Linear Fluorescent Lamps and Ballasts' + @aedgK12HowToTipHash['EL05'] = 'EL5 Compact Fluorescent' + @aedgK12HowToTipHash['EL06'] = 'EL6 Metal Halide' + @aedgK12HowToTipHash['EL07'] = 'EL7 Light-Emitting Diode (LED) Lighting' + @aedgK12HowToTipHash['EL08'] = 'EL8 Occupancy Sensors' + @aedgK12HowToTipHash['EL09'] = 'EL9 Multilevel Switching or Dimming' + @aedgK12HowToTipHash['EL10'] = 'EL10 Exit Signs' + @aedgK12HowToTipHash['EL11'] = 'EL11 Circuiting and Switching' + @aedgK12HowToTipHash['EL12'] = 'EL12 Electrical Lighting Design for Schools' + @aedgK12HowToTipHash['EL13'] = 'EL13 Classroom Lighting' + @aedgK12HowToTipHash['EL14'] = 'EL14 Gym Lighting' + @aedgK12HowToTipHash['EL15'] = 'EL15 Lighting for a Multipurpose Room' + @aedgK12HowToTipHash['EL16'] = 'EL16 Lighting for a Library or Media Center' + @aedgK12HowToTipHash['EL17'] = 'EL17 Corridor Lighting' + @aedgK12HowToTipHash['EL18'] = 'EL18 Lighting for Offices and Teacher Support Rooms' + @aedgK12HowToTipHash['EL19'] = 'EL19 Lighting for Locker Areas and Restrooms' + @aedgK12HowToTipHash['EL20'] = 'EL20 Twenty-Four Hour Lighting' + @aedgK12HowToTipHash['EL21'] = 'EL21 Exterior Lighting Power-Parking Lots and Drives' + @aedgK12HowToTipHash['EL22'] = 'EL22 Exterior Lighting Power-Walkways' + @aedgK12HowToTipHash['EL23'] = 'EL23 Decorative Façade Lighting' + @aedgK12HowToTipHash['EL24'] = 'EL24 Sources' + @aedgK12HowToTipHash['EL25'] = 'EL25 Controls' + + # plug load tips + @aedgK12HowToTipHash['PL01'] = 'PL1 General Guidance' + @aedgK12HowToTipHash['PL02'] = 'PL2 Computer (Information Technology) Equipment' + @aedgK12HowToTipHash['PL03'] = 'PL3 Staff and Occupant Equipment Control' + @aedgK12HowToTipHash['PL04'] = 'PL4 Phantom/Parasitic Loads' + @aedgK12HowToTipHash['PL05'] = 'PL5 ENERGY STAR Appliances/Equipment' + @aedgK12HowToTipHash['PL06'] = 'PL6 Electrical Distribution System' + + # kitchen tips + @aedgK12HowToTipHash['KE01'] = 'KE1 General Guidance' + @aedgK12HowToTipHash['KE02'] = 'KE2 Energy-Efficient Kitchen Equipment' + @aedgK12HowToTipHash['KE03'] = 'KE3 Exhaust and Ventilation Energy Use' + @aedgK12HowToTipHash['KE04'] = 'KE4 Minimize Hot-Water Use' + @aedgK12HowToTipHash['KE05'] = 'KE5 High-Efficiency Walk-in Refrigeration Systems' + @aedgK12HowToTipHash['KE06'] = 'KE6 Position Hooded Appliances to Achieve Lower Exhaust Rates' + @aedgK12HowToTipHash['KE07'] = 'KE7 Operating Considerations' + + # service water heating tips + @aedgK12HowToTipHash['WH01'] = 'WH1 Service Water -Heating Types' + @aedgK12HowToTipHash['WH02'] = 'WH2 System Descriptions' + @aedgK12HowToTipHash['WH03'] = 'WH3 Sizing' + @aedgK12HowToTipHash['WH04'] = 'WH4 Equipment Efficiency' + @aedgK12HowToTipHash['WH05'] = 'WH5 Location' + @aedgK12HowToTipHash['WH06'] = 'WH6 Pipe Insulation' + @aedgK12HowToTipHash['WH07'] = 'WH7 Solar Hot-Water Systems' + + # hvac tips + @aedgK12HowToTipHash['HV01'] = 'HV1 Ground-Source Heat Pump System' + @aedgK12HowToTipHash['HV02'] = 'HV2 Fan-Coil System' + @aedgK12HowToTipHash['HV03'] = 'HV3 Multiple-Zone, Variable-Air-Volume (VAV) Air Handlers' + @aedgK12HowToTipHash['HV04'] = 'HV4 Dedicated Outdoor Air System (DOAS)' + @aedgK12HowToTipHash['HV05'] = 'HV5 Exhaust Air Energy Recovery' + @aedgK12HowToTipHash['HV06'] = 'HV6 Chilled-Water System' + @aedgK12HowToTipHash['HV07'] = 'HV7 Water Heating System' + @aedgK12HowToTipHash['HV08'] = 'HV8 Condenser-Water System for GSHPs' + @aedgK12HowToTipHash['HV09'] = 'HV9 Cooling and Heating Load Calculations' + @aedgK12HowToTipHash['HV10'] = 'HV10 Ventilation Air' + @aedgK12HowToTipHash['HV11'] = 'HV11 Cooling and Heating Equipment Efficiencies' + @aedgK12HowToTipHash['HV12'] = 'HV12 Fan Power and Motor Efficiencies' + @aedgK12HowToTipHash['HV13'] = 'HV13 Part-Load Dehumidification' + @aedgK12HowToTipHash['HV14'] = 'HV14 Economizer' + @aedgK12HowToTipHash['HV15'] = 'HV15 Demand-Controlled Ventilation' + @aedgK12HowToTipHash['HV16'] = 'HV16 System-Level Control Strategies' + @aedgK12HowToTipHash['HV17'] = 'HV17 Thermal Zoning' + @aedgK12HowToTipHash['HV18'] = 'HV18 Ductwork Design and Construction' + @aedgK12HowToTipHash['HV19'] = 'HV19 Duct Insulation' + @aedgK12HowToTipHash['HV20'] = 'HV20 Duct Sealing and Leakage Testing' + @aedgK12HowToTipHash['HV21'] = 'HV21 Exhaust Air Systems' + @aedgK12HowToTipHash['HV22'] = 'HV22 Testing, Adjusting, and Balancing' + @aedgK12HowToTipHash['HV23'] = 'HV23 Air Cleaning' + @aedgK12HowToTipHash['HV24'] = 'HV24 Relief versus Return Fans' + @aedgK12HowToTipHash['HV25'] = 'HV25 Zone Temperature Control' + @aedgK12HowToTipHash['HV26'] = 'HV26 Heating Sources' + @aedgK12HowToTipHash['HV27'] = 'HV27 Noise Control' + @aedgK12HowToTipHash['HV28'] = 'HV28 Proper Maintenance' + # bonus hvac tips + @aedgK12HowToTipHash['HV29'] = 'HV29 Natural Ventilation and Naturally Conditioned Spaces' + @aedgK12HowToTipHash['HV30'] = 'HV30 Thermal Storage' + @aedgK12HowToTipHash['HV31'] = 'HV31 Thermal Mass' + @aedgK12HowToTipHash['HV32'] = 'HV32 Thermal Displacement Ventilation' + @aedgK12HowToTipHash['HV33'] = 'HV33 ASHRAE Standard 62.1 IAQ Procedure' + @aedgK12HowToTipHash['HV34'] = 'HV34 Evaporative Cooling' + + # commissioning tips + @aedgK12HowToTipHash['QA01'] = 'QA1 Design and Construction Team' + @aedgK12HowToTipHash['QA02'] = 'QA2 Owner’s Project Requirements and Basis of Design' + @aedgK12HowToTipHash['QA03'] = 'QA3 Selection of Quality Assurance Provider' + @aedgK12HowToTipHash['QA04'] = 'QA4 Design and Construction Schedule' + @aedgK12HowToTipHash['QA05'] = 'QA5 Design Review' + @aedgK12HowToTipHash['QA06'] = 'QA6 Defining Quality Assurance at Pre-Bid' + @aedgK12HowToTipHash['QA07'] = 'QA7 Verifying Building Envelope Construction' + @aedgK12HowToTipHash['QA08'] = 'QA8 Verifying Lighting Construction' + @aedgK12HowToTipHash['QA09'] = 'QA9 Verifying Electrical and HVAC Systems Construction' + @aedgK12HowToTipHash['QA10'] = 'QA10 Functional Performance Testing' + @aedgK12HowToTipHash['QA11'] = 'QA11 Substantial Completion' + @aedgK12HowToTipHash['QA12'] = 'QA12 Final Acceptance' + @aedgK12HowToTipHash['QA13'] = 'QA13 Establish Building Operation and Maintenance Program' + @aedgK12HowToTipHash['QA14'] = 'QA14 Monitor Post-Occupancy Performance' + @aedgK12HowToTipHash['QA15'] = 'QA15 M&V Electrical Panel Guidance' + @aedgK12HowToTipHash['QA16'] = 'QA16 M&V Data Management and Access' + @aedgK12HowToTipHash['QA17'] = 'QA17 M&V Benchmarking' + @aedgK12HowToTipHash['QA18'] = 'QA18 The Building as a Teaching Tool' + + # renewable energy tips + @aedgK12HowToTipHash['RE01'] = 'RE1 Photovoltaic (PV) Systems' + @aedgK12HowToTipHash['RE02'] = 'RE2 Solar Hot Water Systems' + @aedgK12HowToTipHash['RE03'] = 'RE3 Wind Turbine Power' + + result = @aedgK12HowToTipHash + return result + end # end of OsLib_AedgMeasures.getK12Tips + + # hash of how to tips for small to medium office buildings AEDG + def self.getSmMdOffTips + # envelope tips + aedgSmMdOffHowToTipHash = Hash.new('Small and Medium Offices AEDG How to Implement Recommendations') + aedgSmMdOffHowToTipHash['EN01'] = 'EN1 Cool Roofs' + aedgSmMdOffHowToTipHash['EN02'] = 'EN2 Roofs-Insulation Entirely above Deck' + aedgSmMdOffHowToTipHash['EN03'] = 'EN3 Roofs-Attics, and Other Roofs' + aedgSmMdOffHowToTipHash['EN04'] = 'EN4 Roofs-Metal Buildings' + aedgSmMdOffHowToTipHash['EN05'] = 'EN5 Walls-Mass' + aedgSmMdOffHowToTipHash['EN06'] = 'EN6 Walls-Steel Framed' + aedgSmMdOffHowToTipHash['EN07'] = 'EN7 Walls-Wood Frame and Other' + aedgSmMdOffHowToTipHash['EN08'] = 'EN8 Walls-Metal Building' + aedgSmMdOffHowToTipHash['EN09'] = 'EN9 Walls-Below-Grade' + aedgSmMdOffHowToTipHash['EN10'] = 'EN10 Floors-Mass' + aedgSmMdOffHowToTipHash['EN11'] = 'EN11 Floors-Metal Joist or Wood Joist/Wood Frame' + aedgSmMdOffHowToTipHash['EN12'] = 'EN12 Slab-on-Grade Floors-Unheated' + aedgSmMdOffHowToTipHash['EN13'] = 'EN13 Slab-on-Grade Floors-Heated' + aedgSmMdOffHowToTipHash['EN14'] = 'EN14 Slab Edge Insulation' + aedgSmMdOffHowToTipHash['EN15'] = 'EN15 Doors-Opaque, Swinging' + aedgSmMdOffHowToTipHash['EN16'] = 'EN16 Doors-Opaque, Roll-Up, or Sliding' + aedgSmMdOffHowToTipHash['EN17'] = 'EN17 Air Infiltration Control' + aedgSmMdOffHowToTipHash['EN18'] = 'EN18 Vestibules' + aedgSmMdOffHowToTipHash['EN19'] = 'EN19 Alternative Constructions' + aedgSmMdOffHowToTipHash['EN20'] = 'EN20 Truss Heel Heights' + aedgSmMdOffHowToTipHash['EN21'] = 'EN21 Moisture Control' + aedgSmMdOffHowToTipHash['EN22'] = 'EN22 Thermal Bridging-Opaque Components' + aedgSmMdOffHowToTipHash['EN23'] = 'EN23 Thermal Bridging-Fenestration' + aedgSmMdOffHowToTipHash['EN24'] = 'EN24 Vertical Fenestration Descriptions' + aedgSmMdOffHowToTipHash['EN25'] = 'EN25 Window-to-Wall Ratio (WWR)' + aedgSmMdOffHowToTipHash['EN26'] = 'EN26 Unwanted Solar Heat Gain Is Most Effectively Controlled on the Outside of the Building' + aedgSmMdOffHowToTipHash['EN27'] = 'EN27 Operable versus Fixed Windows' + aedgSmMdOffHowToTipHash['EN28'] = 'EN28 Building Form and Window Orientation' + aedgSmMdOffHowToTipHash['EN29'] = 'EN29 Glazing' + aedgSmMdOffHowToTipHash['EN30'] = 'EN30 Obstructions and Planting' + aedgSmMdOffHowToTipHash['EN31'] = 'EN31 Window Orientation' + aedgSmMdOffHowToTipHash['EN32'] = 'EN32 Passive Solar' + aedgSmMdOffHowToTipHash['EN33'] = 'EN33 Glazing' + aedgSmMdOffHowToTipHash['EN34'] = 'EN34 Visible Transmittance (VT)' + aedgSmMdOffHowToTipHash['EN35'] = 'EN35 Separating Views and Daylight' + aedgSmMdOffHowToTipHash['EN36'] = 'EN36 Color-Neutral Glazing' + aedgSmMdOffHowToTipHash['EN37'] = 'EN37 Reflectivity of Glass' + aedgSmMdOffHowToTipHash['EN38'] = 'EN38 Light-to-Solar-Gain Ratio' + aedgSmMdOffHowToTipHash['EN39'] = 'EN39 High Ceilings' + aedgSmMdOffHowToTipHash['EN40'] = 'EN40 Light Shelves' + + # daylighting tips + aedgSmMdOffHowToTipHash['DL01'] = 'DL1 Daylighting Early in the Design Process' + aedgSmMdOffHowToTipHash['DL02'] = 'DL2 Daylighting Analysis Tools to Optimize Design' + aedgSmMdOffHowToTipHash['DL03'] = 'DL3 Space Types, Layout, and Daylight' + aedgSmMdOffHowToTipHash['DL04'] = 'DL4 Building Orientation and Daylight' + aedgSmMdOffHowToTipHash['DL05'] = 'DL5 Building Shape and Daylight' + aedgSmMdOffHowToTipHash['DL06'] = 'DL6 Window-to-Wall Ratio (WWR)' + aedgSmMdOffHowToTipHash['DL07'] = 'DL7 Sidelighting-Ceiling and Window Height' + aedgSmMdOffHowToTipHash['DL08'] = 'Sidelighting-Clerestory Windows' + aedgSmMdOffHowToTipHash['DL09'] = 'DL9 Sidelighting-Borrowed Light' + aedgSmMdOffHowToTipHash['DL10'] = 'DL10 Sidelighting-Wall-to-Wall Windows' + aedgSmMdOffHowToTipHash['DL11'] = 'DL11 Sidelighting-Punched Windows' + aedgSmMdOffHowToTipHash['DL12'] = 'DL12 Shading Systems to Eliminate Direct-Beam Radiation' + aedgSmMdOffHowToTipHash['DL13'] = 'DL13 Daylighting Control for Audiovisual Activities' + aedgSmMdOffHowToTipHash['DL14'] = 'DL14 Interior Finishes for Daylighting' + aedgSmMdOffHowToTipHash['DL15'] = 'DL15 Outdoor Surface Reflectance' + aedgSmMdOffHowToTipHash['DL16'] = 'DL16 Calibration and Commissioning' + aedgSmMdOffHowToTipHash['DL17'] = 'DL17 Dimming Controls' + aedgSmMdOffHowToTipHash['DL18'] = 'DL18 Photosensor Placement and Lighting Layout' + aedgSmMdOffHowToTipHash['DL19'] = 'DL19 Photosensor Specifications' + aedgSmMdOffHowToTipHash['DL20'] = 'DL20 Select Compatible Light Fixtures' + # bonus daylighting tips + aedgSmMdOffHowToTipHash['DL21'] = 'DL21 Toplighting' + aedgSmMdOffHowToTipHash['DL22'] = 'DL22 Rooftop Monitors' + aedgSmMdOffHowToTipHash['DL23'] = 'DL23 Rooftop Monitor Design' + aedgSmMdOffHowToTipHash['DL24'] = 'DL24 Skylights' + aedgSmMdOffHowToTipHash['DL25'] = 'DL25 Toplighting-Thermal Transmittance (Climate Zones 1-3)' + aedgSmMdOffHowToTipHash['DL26'] = 'DL26 Toplighting-Thermal Transmittance (Climate Zones 4-8)' + aedgSmMdOffHowToTipHash['DL27'] = 'DL27 Toplighting-Ceiling Height Differentials' + + # electric lighting tips + aedgSmMdOffHowToTipHash['EL01'] = 'EL1 Savings and Occupant Acceptance' + aedgSmMdOffHowToTipHash['EL02'] = 'EL2 Space Planning-Open Offices' + aedgSmMdOffHowToTipHash['EL03'] = 'EL3 Space Planning-Private Offices, Conference Rooms, and Break Rooms' + aedgSmMdOffHowToTipHash['EL04'] = 'EL4 Light-Colored Interior Finishes' + aedgSmMdOffHowToTipHash['EL05'] = 'EL5 Task Lighting' + aedgSmMdOffHowToTipHash['EL06'] = 'EL6 Color Rendering Index (CRI)' + aedgSmMdOffHowToTipHash['EL07'] = 'EL7 Color Temperature' + aedgSmMdOffHowToTipHash['EL08'] = 'EL8 Linear Fluorescent Lamps and Ballasts' + aedgSmMdOffHowToTipHash['EL09'] = 'EL9 Occupancy Sensors' + aedgSmMdOffHowToTipHash['EL10'] = 'EL10 Multilevel Switching' + aedgSmMdOffHowToTipHash['EL11'] = 'EL11 Daylight-Responsive Controls' + aedgSmMdOffHowToTipHash['EL12'] = 'EL12 Exit Signs' + aedgSmMdOffHowToTipHash['EL13'] = 'EL13 Light Fixture Distribution' + aedgSmMdOffHowToTipHash['EL14'] = 'EL14 Open-Plan Offices' + aedgSmMdOffHowToTipHash['EL15'] = 'EL15 Private Offices' + aedgSmMdOffHowToTipHash['EL16'] = 'EL16 Conference Rooms/Meeting Rooms' + aedgSmMdOffHowToTipHash['EL17'] = 'EL17 Corridors' + aedgSmMdOffHowToTipHash['EL18'] = 'EL18 Storage Areas' + aedgSmMdOffHowToTipHash['EL19'] = 'EL19 Lobbies' + aedgSmMdOffHowToTipHash['EL20'] = 'EL20 Twenty-Four Hour Lighting' + aedgSmMdOffHowToTipHash['EL21'] = 'EL21 Exterior Lighting Power-Parking Lots and Drives' + aedgSmMdOffHowToTipHash['EL22'] = 'EL22 Exterior Lighting Power-Walkways' + aedgSmMdOffHowToTipHash['EL23'] = 'EL23 Decorative Façade Lighting' + aedgSmMdOffHowToTipHash['EL24'] = 'EL24 Sources' + aedgSmMdOffHowToTipHash['EL25'] = 'EL25 Controls' + + # plug load tips + aedgSmMdOffHowToTipHash['PL01'] = 'PL1 Connected Wattage' + aedgSmMdOffHowToTipHash['PL02'] = 'PL2 Laptop Computers' + aedgSmMdOffHowToTipHash['PL03'] = 'PL3 Occupancy Controls' + aedgSmMdOffHowToTipHash['PL04'] = 'PL4 Parasitic Loads' + aedgSmMdOffHowToTipHash['PL05'] = 'PL5 Printing Equipment' + aedgSmMdOffHowToTipHash['PL06'] = 'PL6 Unnecessary Equipment' + + # service water heating tips + aedgSmMdOffHowToTipHash['WH01'] = 'WH1 Service Water Heating Types' + aedgSmMdOffHowToTipHash['WH02'] = 'WH2 System Descriptions' + aedgSmMdOffHowToTipHash['WH03'] = 'WH3 Sizing' + aedgSmMdOffHowToTipHash['WH04'] = 'WH4 Equipment Efficiency' + aedgSmMdOffHowToTipHash['WH05'] = 'WH5 Location' + aedgSmMdOffHowToTipHash['WH06'] = 'WH6 Pipe Insulation' + + # hvac tips + aedgSmMdOffHowToTipHash['HV01'] = 'HV1 Cooling and Heating Loads' + aedgSmMdOffHowToTipHash['HV02'] = 'HV2 Certification of HVAC Equipment' + aedgSmMdOffHowToTipHash['HV03'] = "HV3 Single-Zone, Packaged Air-Source Heat Pump Systems (or Split Heat Pump +Systems) with Electric Resistance Supplemental Heat and DOASs" + aedgSmMdOffHowToTipHash['HV04'] = 'HV4 Water-Source Heat Pumps (WSHPs)' + aedgSmMdOffHowToTipHash['HV05'] = 'HV5 Ground-Coupled Water-Source Heat Pump (WSHP) System' + aedgSmMdOffHowToTipHash['HV06'] = "HV6 Multiple-Zone, VAV Packaged DX Rooftop Units with a Hot-Water Coil, +Indirect Gas Furnace, or Electric Resistance in the Rooftop Unit and +Convection Heat in the Spaces" + aedgSmMdOffHowToTipHash['HV07'] = "HV7 Multiple-Zone, VAV Air-Handling Units with Packaged Air-Cooled Chiller and +Gas-Fired Boiler" + aedgSmMdOffHowToTipHash['HV08'] = 'Fan-Coils' + aedgSmMdOffHowToTipHash['HV09'] = 'HV9 Radiant Heating and Cooling and DOAS' + aedgSmMdOffHowToTipHash['HV10'] = 'HV10 Dedicated Outdoor Air Systems (100% Outdoor Air Systems)' + aedgSmMdOffHowToTipHash['HV11'] = 'HV11 Part-Load Dehumidification' + aedgSmMdOffHowToTipHash['HV12'] = 'HV12 Exhaust Air Energy Recovery' + aedgSmMdOffHowToTipHash['HV13'] = 'HV13 Indirect Evaporative Cooling' + aedgSmMdOffHowToTipHash['HV14'] = 'HV14 Cooling and Heating Equipment Efficiencies' + aedgSmMdOffHowToTipHash['HV15'] = 'HV15 Ventilation Air' + aedgSmMdOffHowToTipHash['HV16'] = 'HV16 Economizer' + aedgSmMdOffHowToTipHash['HV17'] = 'HV17 Demand-Controlled Ventilation (DCV)' + aedgSmMdOffHowToTipHash['HV18'] = 'HV18 Carbon Dioxide (CO2 ) Sensors' + aedgSmMdOffHowToTipHash['HV19'] = 'HV19 Exhaust Air Systems' + aedgSmMdOffHowToTipHash['HV20'] = 'HV20 Ductwork Design and Construction' + aedgSmMdOffHowToTipHash['HV21'] = 'HV21 Duct Insulation' + aedgSmMdOffHowToTipHash['HV22'] = 'HV22 Duct Sealing and Leakage Testing' + aedgSmMdOffHowToTipHash['HV23'] = 'HV23 Fan Motor Efficiencies' + aedgSmMdOffHowToTipHash['HV24'] = 'HV24 Thermal Zoning' + aedgSmMdOffHowToTipHash['HV25'] = 'HV25 System-Level Control Strategies' + aedgSmMdOffHowToTipHash['HV26'] = 'HV26 Testing, Adjusting, and Balancing' + aedgSmMdOffHowToTipHash['HV27'] = 'HV27 Commissioning (Cx)' + aedgSmMdOffHowToTipHash['HV28'] = 'HV28 Filters' + aedgSmMdOffHowToTipHash['HV29'] = 'HV29 Chilled-Water (CHW) System' + aedgSmMdOffHowToTipHash['HV30'] = 'HV30 Water Heating Systems' + aedgSmMdOffHowToTipHash['HV31'] = 'HV31 Relief versus Return Fans' + aedgSmMdOffHowToTipHash['HV32'] = 'HV32 Heating Sources' + aedgSmMdOffHowToTipHash['HV33'] = 'HV33 Noise Control' + aedgSmMdOffHowToTipHash['HV34'] = 'HV34 Proper Maintenance' + aedgSmMdOffHowToTipHash['HV35'] = 'HV35 Zone Temperature Control' + aedgSmMdOffHowToTipHash['HV36'] = 'HV36 Evaporative Condensers on Rooftop Units' + + # commissioning tips + aedgSmMdOffHowToTipHash['QA01'] = 'QA1 Selecting the Design and Construction Team' + aedgSmMdOffHowToTipHash['QA02'] = 'QA2 Selecting the QA Provider' + aedgSmMdOffHowToTipHash['QA03'] = 'QA3 Owner’s Project Requirements (OPR) and Basis of Design (BoD)' + aedgSmMdOffHowToTipHash['QA04'] = 'QA4 Design and Construction Schedule' + aedgSmMdOffHowToTipHash['QA05'] = 'QA5 Design Review' + aedgSmMdOffHowToTipHash['QA06'] = 'QA6 Defining QA at Pre-Bid' + aedgSmMdOffHowToTipHash['QA07'] = 'QA7 Verifying Building Envelope Construction' + aedgSmMdOffHowToTipHash['QA08'] = 'QA8 Verifying Lighting Construction' + aedgSmMdOffHowToTipHash['QA09'] = 'QA9 Verifying Electrical and HVAC Systems Construction' + aedgSmMdOffHowToTipHash['QA10'] = 'QA10 Performance Testing' + aedgSmMdOffHowToTipHash['QA11'] = 'QA11 Substantial Completion' + aedgSmMdOffHowToTipHash['QA12'] = 'QA12 Final Acceptance' + aedgSmMdOffHowToTipHash['QA13'] = 'QA13 Establish a Building Operation and Maintenance (O&M) Program' + aedgSmMdOffHowToTipHash['QA14'] = 'QA14 Monitor Post-Occupancy Performance' + + # natural ventilation tips + aedgSmMdOffHowToTipHash['NV01'] = 'NV1 Natural Ventilation and Naturally Conditioned Spaces' + + # renewable energy tips + aedgSmMdOffHowToTipHash['RE01'] = 'RE1 Photovoltaic (PV) Systems' + aedgSmMdOffHowToTipHash['RE02'] = 'RE2 Wind Turbine Power' + aedgSmMdOffHowToTipHash['RE03'] = 'RE3 Transpired Solar Collector' + aedgSmMdOffHowToTipHash['RE04'] = 'RE4 Power Purchase Agreements' + + result = aedgSmMdOffHowToTipHash + return result + end # end of OsLib_AedgMeasures.getSmMdOffTips +end # end of module OsLib_AedgMeasures diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_Constructions.rb b/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_Constructions.rb new file mode 100644 index 0000000..7b11ac3 --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_Constructions.rb @@ -0,0 +1,221 @@ +# frozen_string_literal: true + +module OsLib_Constructions + # infer insulation layer from a construction + def self.inferInsulationLayer(construction, minThermalResistance) + construction_layers = construction.layers + counter = 0 + max_resistance = 0 + thermal_resistance_array = [] + + # loop through construction layers and infer insulation layer/material + construction_layers.each do |construction_layer| + construction_thermal_resistance = construction_layer.to_OpaqueMaterial.get.thermalResistance + if !thermal_resistance_array.empty? + if construction_thermal_resistance > max_resistance + thermal_resistance_array = [construction_layer, counter, construction_thermal_resistance] + max_resistance = construction_thermal_resistance + end + else + thermal_resistance_array = [construction_layer, counter, construction_thermal_resistance] + end + counter += 1 + end + + # test against minimum + if max_resistance > minThermalResistance + minTestPass = true + else + minTestPass = false + end + + result = { + 'construction' => construction, + 'construction_layer' => thermal_resistance_array[0], + 'layer_index' => thermal_resistance_array[1], + 'construction_thermal_resistance' => thermal_resistance_array[2], + 'insulationFound' => minTestPass + } + + return result + end + + # change thermal resistance of opaque materials + def self.setMaterialThermalResistance(material, thermalResistance, options = {}) + # set defaults to use if user inputs not passed in + defaults = { + 'cloneMaterial' => true, # in future give user option to clone or change live material + 'name' => "#{material.name} - adj" + } + + # merge user inputs with defaults + options = defaults.merge(options) + + # clone input material + new_material = material.clone(material.model) + new_material = new_material.to_OpaqueMaterial.get + new_material.setName(options['name']) + + # edit insulation material + new_material_matt = new_material.to_Material + if !new_material_matt.empty? + starting_thickness = new_material_matt.get.thickness + target_thickness = starting_thickness * thermalResistance / material.to_OpaqueMaterial.get.thermalResistance + final_thickness = new_material_matt.get.setThickness(target_thickness) + end + new_material_massless = new_material.to_MasslessOpaqueMaterial + if !new_material_massless.empty? + final_thermal_resistance = new_material_massless.get.setThermalResistance(thermalResistance) + end + new_material_airgap = new_material.to_AirGap + if !new_material_airgap.empty? + final_thermal_resistance = new_material_airgap.get.setThermalResistance(thermalResistance) + end + + result = new_material + return result + end + + # add new material to outside of a construction + def self.addNewLayerToConstruction(construction, options = {}) + # set defaults to use if user inputs not passed in + defaults = { + 'cloneConstruction' => false, # in future give user option to clone or change live construction + 'layerIndex' => 0, # 0 will be outside. Measure writer should validate any non 0 layerIndex passed in. + 'name' => "#{construction.name} - new material", + 'roughness' => nil, + 'thickness' => nil, + 'conductivity' => nil, + 'density' => nil, + 'specificHeat' => nil, + 'thermalAbsorptance' => nil, + 'solarAbsorptance' => nil, + 'visibleAbsorptance' => nil + } + + # merge user inputs with defaults + options = defaults.merge(options) + + # TODO: - would be nice to grab surface properties from previous exposed material + + # make new material + exposedMaterialNew = OpenStudio::Model::StandardOpaqueMaterial.new(construction.model) + exposedMaterialNew.setName(options['name']) + + # set requested material properties + if !options['roughness'].nil? then exposedMaterialNew.setRoughness(options['roughness']) end + if !options['thickness'].nil? then exposedMaterialNew.setThickness(options['thickness']) end + if !options['conductivity'].nil? then exposedMaterialNew.setConductivity(options['conductivity']) end + if !options['density'].nil? then exposedMaterialNew.setDensity(options['density']) end + if !options['specificHeat'].nil? then exposedMaterialNew.setSpecificHeat(options['specificHeat']) end + if !options['thermalAbsorptance'].nil? then exposedMaterialNew.setThermalAbsorptance(options['thermalAbsorptance']) end + if !options['solarAbsorptance'].nil? then exposedMaterialNew.setSolarAbsorptance(options['solarAbsorptance']) end + if !options['visibleAbsorptance'].nil? then exposedMaterialNew.setVisibleAbsorptance(options['visibleAbsorptance']) end + + # add material to construction + construction.insertLayer(options['layerIndex'], exposedMaterialNew) + + result = exposedMaterialNew + return result + end + + # set material surface properties for specific layer in construction. this should work on OS:Material and OS:MasslessOpaqueMaterial + def self.setConstructionSurfaceProperties(construction, options = {}) + # set defaults to use if user inputs not passed in + defaults = { + 'cloneConstruction' => false, # in future give user option to clone or change live construction + 'nameConstruction' => "#{construction.name} - adj", # not currently used + 'cloneMaterial' => true, + 'roughness' => nil, + 'thermalAbsorptance' => nil, + 'solarAbsorptance' => nil, + 'visibleAbsorptance' => nil + } + + # merge user inputs with defaults + options = defaults.merge(options) + + exposedMaterial = construction.to_LayeredConstruction.get.getLayer(0) + if options['cloneMaterial'] + + # clone material + exposedMaterialNew = exposedMaterial.clone(construction.model).to_StandardOpaqueMaterial.get # to_StandardOpaqueMaterial is needed to access roughness, otherwise to_OpaqueMaterial would have been fine. + exposedMaterialNew.setName("#{exposedMaterial.name} - adj") + + # connect new material to original construction + construction.eraseLayer(0) + construction.insertLayer(0, exposedMaterialNew) + + else + exposedMaterialNew = exposedMaterial.to_StandardOpaqueMaterial.get # not being cloned but still want to rename + exposedMaterialNew.setName("#{exposedMaterial.name} - adj") + end + + # TODO: - need to test with MasslessOpaqueMaterial. Add test if doesn't return anything when use to_StandardOpaqueMaterial.get + + # set requested material properties + if !options['roughness'].nil? then exposedMaterialNew.setRoughness(options['roughness']) end + if !options['thermalAbsorptance'].nil? then exposedMaterialNew.setThermalAbsorptance(options['thermalAbsorptance']) end + if !options['solarAbsorptance'].nil? then exposedMaterialNew.setSolarAbsorptance(options['solarAbsorptance']) end + if !options['visibleAbsorptance'].nil? then exposedMaterialNew.setVisibleAbsorptance(options['visibleAbsorptance']) end + + result = { 'exposedMaterial' => exposedMaterial, 'exposedMaterialNew' => exposedMaterialNew } + return result + end # end of OsLib_Constructions.setMaterialSurfaceProperties + + # similar to setMaterialSurfaceProperties but I just pass a material in. Needed this to set material properties for interior walls and both sides of interior partitions. + def self.setMaterialSurfaceProperties(material, options = {}) + # set defaults to use if user inputs not passed in + defaults = { + 'cloneMaterial' => true, + 'roughness' => nil, + 'thermalAbsorptance' => nil, + 'solarAbsorptance' => nil, + 'visibleAbsorptance' => nil + } + + # merge user inputs with defaults + options = defaults.merge(options) + + if options['cloneMaterial'] + # clone material + materialNew = exposedMaterial.clone(construction.model).get + materialNew.setName("#{materialNew.name} - adj") + else + materialNew = material # not being cloned + materialNew.setName("#{materialNew.name} - adj") + end + + # to_StandardOpaqueMaterial is needed to access roughness, otherwise to_OpaqueMaterial would have been fine. + if !materialNew.to_StandardOpaqueMaterial.empty? + materialNew = materialNew.to_StandardOpaqueMaterial.get + elsif !materialNew.to_MasslessOpaqueMaterial.empty? + materialNew = materialNew.to_MasslessOpaqueMaterial.get + end + + # set requested material properties + if !options['roughness'].nil? then materialNew.setRoughness(options['roughness']) end + if !options['thermalAbsorptance'].nil? then materialNew.setThermalAbsorptance(options['thermalAbsorptance']) end + if !options['solarAbsorptance'].nil? then materialNew.setSolarAbsorptance(options['solarAbsorptance']) end + if !options['visibleAbsorptance'].nil? then materialNew.setVisibleAbsorptance(options['visibleAbsorptance']) end + + result = { 'material' => material, 'materialNew' => materialNew } + return result + end # end of OsLib_Constructions.setMaterialSurfaceProperties + + # sri of exposed surface of a construction (calculation from K-12 AEDG, derived from ASTM E1980 assuming medium wind speed) + def self.getConstructionSRI(construction) + exposedMaterial = construction.to_LayeredConstruction.get.getLayer(0) + solarAbsorptance = exposedMaterial.to_OpaqueMaterial.get.solarAbsorptance + thermalEmissivity = exposedMaterial.to_OpaqueMaterial.get.thermalAbsorptance + # lines below just for testing + # solarAbsorptance = 1 - 0.65 + # thermalEmissivity = 0.86 + + x = (20.797 * solarAbsorptance - 0.603 * thermalEmissivity) / (9.5205 * thermalEmissivity + 12.0) + sri = 123.97 - 141.35 * x + 9.6555 * x * x + + result = sri + return result + end # end of OsLib_Constructions.getConstructionSRI +end diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_Geometry.rb b/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_Geometry.rb new file mode 100644 index 0000000..83e43a9 --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_Geometry.rb @@ -0,0 +1,41 @@ +# frozen_string_literal: true + +module OsLib_Geometry + # lower z value of vertices with starting value above x to new value of y + def self.lowerSurfaceZvalue(surfaceArray, zValueTarget) + counter = 0 + + # loop over all surfaces + surfaceArray.each do |surface| + # create a new set of vertices + newVertices = OpenStudio::Point3dVector.new + + # get the existing vertices for this interior partition + vertices = surface.vertices + flag = false + vertices.each do |vertex| + # initialize new vertex to old vertex + x = vertex.x + y = vertex.y + z = vertex.z + + # if this z vertex is not on the z = 0 plane + if z > zValueTarget + z = zValueTarget + flag = true + end + + # add point to new vertices + newVertices << OpenStudio::Point3d.new(x, y, z) + end + + # set vertices to new vertices + surface.setVertices(newVertices) # todo check if this was made, and issue warning if it was not. Could happen if resulting surface not planer. + + if flag then counter += 1 end + end # end of surfaceArray.each do + + result = counter + return result + end +end diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_HVAC.rb b/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_HVAC.rb new file mode 100644 index 0000000..22e7174 --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_HVAC.rb @@ -0,0 +1,1682 @@ +# frozen_string_literal: true + +module OsLib_HVAC + # do something + def self.doSomething(input) + # do something + output = input + + result = output + return result + end # end of def + + # validate and make plenum zones + def self.validateAndAddPlenumZonesToSystem(model, runner, options = {}) + # set defaults to use if user inputs not passed in + defaults = { + 'zonesPlenum' => nil, + 'zonesPrimary' => nil, + 'type' => 'ceilingReturn' + } + + # merge user inputs with defaults + options = defaults.merge(options) + + # array of valid ceiling plenums + zoneSurfaceHash = {} + zonePlenumHash = {} + + if options['zonesPlenum'].nil? + runner.registerWarning('No plenum zones were passed in, validateAndAddPlenumZonesToSystem will not alter the model.') + else + options['zonesPlenum'].each do |zone| + # get spaces in zone + spaces = zone.spaces + # get adjacent spaces + spaces.each do |space| + # get surfaces + surfaces = space.surfaces + # loop through surfaces looking for floors with surface boundary condition, grab zone that surface's parent space is in. + surfaces.each do |surface| + if (surface.outsideBoundaryCondition == 'Surface') && (surface.surfaceType == 'Floor') + next unless surface.adjacentSurface.is_initialized + adjacentSurface = surface.adjacentSurface.get + next unless adjacentSurface.space.is_initialized + adjacentSurfaceSpace = adjacentSurface.space.get + next unless adjacentSurfaceSpace.thermalZone.is_initialized + adjacentSurfaceSpaceZone = adjacentSurfaceSpace.thermalZone.get + if options['zonesPrimary'].include? adjacentSurfaceSpaceZone + if zoneSurfaceHash[adjacentSurfaceSpaceZone].nil? || (surface.grossArea > zoneSurfaceHash[adjacentSurfaceSpaceZone]) + adjacentSurfaceSpaceZone.setReturnPlenum(zone) + zoneSurfaceHash[adjacentSurfaceSpaceZone] = surface.grossArea + zonePlenumHash[adjacentSurfaceSpaceZone] = zone + end + end + end + end # end of surfaces.each do + end # end of spaces.each do + end # end of zonesPlenum.each do + end # end of zonesPlenum == nil + + # report out results of zone-plenum hash + zonePlenumHash.each do |zone, plenum| + runner.registerInfo("#{plenum.name} has been set as a return air plenum for #{zone.name}.") + end + + # pass back zone-plenum hash + result = zonePlenumHash + return result + end # end of def + + def self.sortZones(model, runner, options = {}, space_type_to_edits_hash = {}) + # set defaults to use if user inputs not passed in + defaults = { 'standardBuildingTypeTest' => nil, # not used for now + 'secondarySpaceTypeTest' => nil, + 'ceilingReturnPlenumSpaceType' => nil } + + # merge user inputs with defaults + options = defaults.merge(options) + + # set up zone type arrays + zonesPrimary = [] + zonesSecondary = [] + zonesPlenum = [] + zonesUnconditioned = [] + + # get thermal zones + zones = model.getThermalZones + zones.each do |zone| + # assign appropriate zones to zonesPlenum or zonesUnconditioned (those that don't have thermostats or zone HVAC equipment) + # if not conditioned then add to zonesPlenum or zonesUnconditioned + unless zone.thermostatSetpointDualSetpoint.is_initialized || !zone.equipment.empty? + # determine if zone is a plenum zone or general unconditioned zone + # assume it is a plenum if it has at least one plenum space + zone.spaces.each do |space| + # if a zone has already been assigned as a plenum, skip + next if zonesPlenum.include? zone + # if zone not assigned as a plenum, get space type if it exists + # compare to plenum space type if it has been assigned + if space.spaceType.is_initialized && (options['ceilingReturnPlenumSpaceType'].nil? == false) + spaceType = space.spaceType.get + if spaceType == options['ceilingReturnPlenumSpaceType'] + zonesPlenum << zone # zone has a plenum space; assign it as a plenum + end + end + end + # if zone not assigned as a plenum, assign it as unconditioned + unless zonesPlenum.include? zone + zonesUnconditioned << zone + end + end + end + # zone is conditioned. check if its space type is secondary or primary + spaces = model.getSpaces + spaces.each do |space| + spaceType = space.spaceType.get + if space_type_to_edits_hash[spaceType] == true + zonesPrimary << space.thermalZone.get + end + end # end of spaces each do + # if zone is conditioned and is of space type true, assign it to primary zones + + zonesSorted = { 'zonesPrimary' => zonesPrimary, + 'zonesSecondary' => zonesSecondary, + 'zonesPlenum' => zonesPlenum, + 'zonesUnconditioned' => zonesUnconditioned } + # pass back zonesSorted hash + result = zonesSorted + return result + end # end of def + + def self.reportConditions(model, runner, condition) + airloops = model.getAirLoopHVACs + plantLoops = model.getPlantLoops + zones = model.getThermalZones + + # count up zone equipment (not counting zone exhaust fans) + zoneHasEquip = false + zonesWithEquipCounter = 0 + + zones.each do |zone| + if !zone.equipment.empty? + zone.equipment.each do |equip| + unless equip.to_FanZoneExhaust.is_initialized + zonesWithEquipCounter += 1 + break + end + end + end + end + + if condition == 'initial' + runner.registerInitialCondition("The building started with #{airloops.size} air loops and #{plantLoops.size} plant loops. #{zonesWithEquipCounter} zones were conditioned with zone equipment.") + elsif condition == 'final' + runner.registerFinalCondition("The building finished with #{airloops.size} air loops and #{plantLoops.size} plant loops. #{zonesWithEquipCounter} zones are conditioned with zone equipment.") + end + end # end of def + + def self.removeEquipment(model, runner, options) + airloops = model.getAirLoopHVACs + plantLoops = model.getPlantLoops + zones = model.getThermalZones + + # remove all zone equipment except zone exhaust fans + zones.each do |zone| + # runner.registerInfo("primary zones values are #{value.name}") + if options['zonesPrimary'].include? zone + zone.equipment.each do |equip| + if equip.to_FanZoneExhaust.is_initialized # or (equip.to_ZoneHVACUnitHeater.is_initialized and zone.get.equipment.size == 1) + else + equip.remove + end + end + end + end + + # remove an air loop if it's empty + airloops.each do |air_loop| + air_loop.thermalZones.each do |airZone| + if options['zonesPrimary'].include? airZone + air_loop.removeBranchForZone(airZone) + end + end + if air_loop.thermalZones.empty? + air_loop.remove + end + end + + # remove plant loops + plantLoops.each do |plantLoop| + # get the demand components and see if water use connection, then save it + # notify user with info statement if supply side of plant loop had heat exchanger for refrigeration + usedForSWHOrRefrigeration = false + usedForZoneHCCoils = false + plantLoop.demandComponents.each do |comp| # AP code to check your comments above + runner.registerInfo("plant loops component is #{comp.name}") + if comp.to_WaterUseConnections.is_initialized || comp.to_CoilWaterHeatingDesuperheater.is_initialized + usedForSWHOrRefrigeration = true + runner.registerWarning("#{plantLoop.name} is used for SWH or refrigeration. Loop will not be deleted.") + elsif comp.name.to_s.include?('Coil') && (comp.name.to_s != 'Coil Heating Water 1') && (comp.name.to_s != 'Coil Cooling Water 1') # to_CoilWaterHeatingDesuperheater.is_initialized or comp.name.to_s.include? "coil" + runner.registerWarning("#{plantLoop.name} has coils used by Zone HVAC components. Loop will not be deleted.") + usedForZoneHCCoils = true + end + end + # runner.registerInfo("Used for ZoneHCCoils Value is #{usedForZoneHCCoils}") + # runner.registerInfo("Used for SWH or refrigeration is #{usedForSWHOrRefrigeration}") + if usedForSWHOrRefrigeration == false # and usedForZoneHCCoils == false # <-- Sang Hoon Lee: "and usedForZoneHCCoils == false" Treated as comment for BRICR Medium office to remove Coil:Heating:Water + plantLoop.remove + runner.registerInfo("Plant Loop #{plantLoop.name} is removed") + end + end # end of plantloop components + end # end of def + + def self.assignHVACSchedules(model, runner, options = {}) + require "#{File.dirname(__FILE__)}/OsLib_Schedules" + + schedulesHVAC = {} + airloops = model.getAirLoopHVACs + + # find airloop with most primary spaces + max_primary_spaces = 0 + representative_airloop = false + building_HVAC_schedule = false + building_ventilation_schedule = false + unless options['remake_schedules'] + # if remake schedules not selected, get relevant schedules from model if they exist + airloops.each do |air_loop| + primary_spaces = 0 + air_loop.thermalZones.each do |thermal_zone| + thermal_zone.spaces.each do |space| + if space.spaceType.is_initialized + if space.spaceType.get.name.is_initialized + if space.spaceType.get.name.get.include? options['primarySpaceType'] + primary_spaces += 1 + end + end + end + end + end + if primary_spaces > max_primary_spaces + max_primary_spaces = primary_spaces + representative_airloop = air_loop + end + end + end + if representative_airloop + building_HVAC_schedule = representative_airloop.availabilitySchedule + if representative_airloop.airLoopHVACOutdoorAirSystem.is_initialized + building_ventilation_schedule_optional = representative_airloop.airLoopHVACOutdoorAirSystem.get.getControllerOutdoorAir.maximumFractionofOutdoorAirSchedule + if building_ventilation_schedule_optional.is_initialized + building_ventilation_schedule = building_ventilation_schedule.get + end + end + end + # build new airloop schedules if existing model doesn't have them + if options['primarySpaceType'] == 'Classroom' + # ventilation schedule + unless building_ventilation_schedule + runner.registerInfo('Baseline does not have minimum OA ventilation schedule. A new K-12 Ventilation schedule is created') + ruleset_name = 'New K-12 Ventilation Schedule' + winter_design_day = [[24, 1]] + summer_design_day = [[24, 1]] + default_day = ['Weekday', [6, 0], [18, 1], [24, 0]] + rules = [] + rules << ['Weekend', '1/1-12/31', 'Sat/Sun', [24, 0]] + rules << ['Summer Weekday', '7/1-8/31', 'Mon/Tue/Wed/Thu/Fri', [8, 0], [13, 1], [24, 0]] + options_ventilation = { 'name' => ruleset_name, + 'winter_design_day' => winter_design_day, + 'summer_design_day' => summer_design_day, + 'default_day' => default_day, + 'rules' => rules } + building_ventilation_schedule = OsLib_Schedules.createComplexSchedule(model, options_ventilation) + end + # HVAC availability schedule + unless building_HVAC_schedule + runner.registerInfo('Baseline does not have HVAC availability schedule. A new K-12 HVAC availability schedule is created') + ruleset_name = 'New K-12 HVAC Availability Schedule' + winter_design_day = [[24, 1]] + summer_design_day = [[24, 1]] + default_day = ['Weekday', [6, 0], [18, 1], [24, 0]] + rules = [] + rules << ['Weekend', '1/1-12/31', 'Sat/Sun', [24, 0]] + rules << ['Summer Weekday', '7/1-8/31', 'Mon/Tue/Wed/Thu/Fri', [8, 0], [13, 1], [24, 0]] + options_hvac = { 'name' => ruleset_name, + 'winter_design_day' => winter_design_day, + 'summer_design_day' => summer_design_day, + 'default_day' => default_day, + 'rules' => rules } + building_HVAC_schedule = OsLib_Schedules.createComplexSchedule(model, options_hvac) + end + elsif options['primarySpaceType'] == 'Office' # xf - leave as is + # ventilation schedule + unless building_ventilation_schedule + runner.registerInfo('Baseline does not have minimum OA ventilation schedule. A new Office Ventilation schedule is created.') + ruleset_name = 'New Office Ventilation Schedule' + winter_design_day = [[24, 1]] # ML These are not always on in PNNL model + summer_design_day = [[24, 1]] # ML These are not always on in PNNL model + default_day = ['Weekday', [7, 0], [22, 1], [24, 0]] # ML PNNL has a one hour ventilation offset + rules = [] + rules << ['Saturday', '1/1-12/31', 'Sat', [7, 0], [18, 1], [24, 0]] # ML PNNL has a one hour ventilation offset + rules << ['Sunday', '1/1-12/31', 'Sun', [24, 0]] + options_ventilation = { 'name' => ruleset_name, + 'winter_design_day' => winter_design_day, + 'summer_design_day' => summer_design_day, + 'default_day' => default_day, + 'rules' => rules } + building_ventilation_schedule = OsLib_Schedules.createComplexSchedule(model, options_ventilation) + end + # HVAC availability schedule + unless building_HVAC_schedule + runner.registerInfo('Baseline does not have HVAC availability schedule. A new office HVAC availability schedule is created') + ruleset_name = 'New Office HVAC Availability Schedule' + winter_design_day = [[24, 1]] # ML These are not always on in PNNL model + summer_design_day = [[24, 1]] # ML These are not always on in PNNL model + default_day = ['Weekday', [6, 0], [22, 1], [24, 0]] # ML PNNL has a one hour ventilation offset + rules = [] + rules << ['Saturday', '1/1-12/31', 'Sat', [6, 0], [18, 1], [24, 0]] # ML PNNL has a one hour ventilation offset + rules << ['Sunday', '1/1-12/31', 'Sun', [24, 0]] + options_hvac = { 'name' => ruleset_name, + 'winter_design_day' => winter_design_day, + 'summer_design_day' => summer_design_day, + 'default_day' => default_day, + 'rules' => rules } + building_HVAC_schedule = OsLib_Schedules.createComplexSchedule(model, options_hvac) + end + # special loops for radiant system (different temperature setpoints) + if options['allHVAC']['zone'] == 'Radiant' + # create hot water schedule for radiant heating loop + schedulesHVAC['radiant_hot_water'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New HW-Radiant-Loop-Temp-Schedule', + 'default_day' => ['All Days', [24, 45.0]]) + # create hot water schedule for radiant cooling loop + schedulesHVAC['radiant_chilled_water'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New CW-Radiant-Loop-Temp-Schedule', + 'default_day' => ['All Days', [24, 15.0]]) + # create mean radiant heating and cooling setpoint schedules + # ML ideally, should grab schedules tied to zone thermostat and make modified versions that follow the setback pattern + # for now, create new ones that match the recommended HVAC schedule + # mean radiant heating setpoint schedule (PNNL values) + ruleset_name = 'New Office Mean Radiant Heating Setpoint Schedule' + winter_design_day = [[24, 18.8]] + summer_design_day = [[6, 18.3], [22, 18.8], [24, 18.3]] + default_day = ['Weekday', [6, 18.3], [22, 18.8], [24, 18.3]] + rules = [] + rules << ['Saturday', '1/1-12/31', 'Sat', [6, 18.3], [18, 18.8], [24, 18.3]] + rules << ['Sunday', '1/1-12/31', 'Sun', [24, 18.3]] + options_radiant_heating = { 'name' => ruleset_name, + 'winter_design_day' => winter_design_day, + 'summer_design_day' => summer_design_day, + 'default_day' => default_day, + 'rules' => rules } + mean_radiant_heating_schedule = OsLib_Schedules.createComplexSchedule(model, options_radiant_heating) + schedulesHVAC['mean_radiant_heating'] = mean_radiant_heating_schedule + # mean radiant cooling setpoint schedule (PNNL values) + ruleset_name = 'New Office Mean Radiant Cooling Setpoint Schedule' + winter_design_day = [[6, 26.7], [22, 24.0], [24, 26.7]] + summer_design_day = [[24, 24.0]] + default_day = ['Weekday', [6, 26.7], [22, 24.0], [24, 26.7]] + rules = [] + rules << ['Saturday', '1/1-12/31', 'Sat', [6, 26.7], [18, 24.0], [24, 26.7]] + rules << ['Sunday', '1/1-12/31', 'Sun', [24, 26.7]] + options_radiant_cooling = { 'name' => ruleset_name, + 'winter_design_day' => winter_design_day, + 'summer_design_day' => summer_design_day, + 'default_day' => default_day, + 'rules' => rules } + mean_radiant_cooling_schedule = OsLib_Schedules.createComplexSchedule(model, options_radiant_cooling) + schedulesHVAC['mean_radiant_cooling'] = mean_radiant_cooling_schedule + end + end + # SAT schedule + if options['allHVAC']['primary']['doas'] + # primary airloop is DOAS + schedulesHVAC['primary_sat'] = sch_ruleset_DOAS_setpoint = OsLib_Schedules.createComplexSchedule(model, 'name' => 'DOAS Temperature Setpoint Schedule', + 'default_day' => ['All Days', [24, 21.111]]) + else + # primary airloop is multizone VAV that cools + schedulesHVAC['primary_sat'] = sch_ruleset_DOAS_setpoint = OsLib_Schedules.createComplexSchedule(model, 'name' => 'Cold Deck Temperature Setpoint Schedule', + 'default_day' => ['All Days', [24, 12.8]]) + end + schedulesHVAC['ventilation'] = building_ventilation_schedule + schedulesHVAC['hvac'] = building_HVAC_schedule + # build new plant schedules as needed + zoneHVACHotWaterPlant = ['FanCoil', 'DualDuct', 'Baseboard'] # dual duct has fan coil and baseboard + zoneHVACChilledWaterPlant = ['FanCoil', 'DualDuct'] # dual duct has fan coil + # hot water + if (options['allHVAC']['primary']['heat'] == 'Water') || (options['allHVAC']['secondary']['heat'] == 'Water') || zoneHVACHotWaterPlant.include?(options['allHVAC']['zone']) + schedulesHVAC['hot_water'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'HW-Loop-Temp-Schedule', + 'default_day' => ['All Days', [24, 67.0]]) + end + # chilled water + if (options['allHVAC']['primary']['cool'] == 'Water') || (options['allHVAC']['secondary']['cool'] == 'Water') || zoneHVACChilledWaterPlant.include?(options['allHVAC']['zone']) + schedulesHVAC['chilled_water'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'CW-Loop-Temp-Schedule', + 'default_day' => ['All Days', [24, 6.7]]) + end + # heat pump condenser loop schedules + if options['allHVAC']['zone'] == 'GSHP' + # there will be a heat pump condenser loop + # loop setpoint schedule + schedulesHVAC['hp_loop'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New HP-Loop-Temp-Schedule', + 'default_day' => ['All Days', [24, 21]]) + # cooling component schedule (#ML won't need this if a ground loop is actually modeled) + schedulesHVAC['hp_loop_cooling'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New HP-Loop-Clg-Temp-Schedule', + 'default_day' => ['All Days', [24, 21]]) + # heating component schedule + schedulesHVAC['hp_loop_heating'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New HP-Loop-Htg-Temp-Schedule', + 'default_day' => ['All Days', [24, 5]]) + end + if options['allHVAC']['zone'] == 'WSHP' + # there will be a heat pump condenser loop + # loop setpoint schedule + schedulesHVAC['hp_loop'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New HP-Loop-Temp-Schedule', + 'default_day' => ['All Days', [24, 30]]) # PNNL + # cooling component schedule (#ML won't need this if a ground loop is actually modeled) + schedulesHVAC['hp_loop_cooling'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New HP-Loop-Clg-Temp-Schedule', + 'default_day' => ['All Days', [24, 30]]) # PNNL + # heating component schedule + schedulesHVAC['hp_loop_heating'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New HP-Loop-Htg-Temp-Schedule', + 'default_day' => ['All Days', [24, 20]]) # PNNL + end + + # pass back schedulesHVAC hash + result = schedulesHVAC + return result + end # end of def + + def self.createHotWaterPlant(model, runner, hot_water_setpoint_schedule, loop_type, parameters) + hot_water_plant = OpenStudio::Model::PlantLoop.new(model) + hot_water_plant.setName("New #{loop_type} Loop") + hot_water_plant.setMaximumLoopTemperature(100) + hot_water_plant.setMinimumLoopTemperature(10) + loop_sizing = hot_water_plant.sizingPlant + loop_sizing.setLoopType('Heating') + if loop_type == 'Hot Water' + loop_sizing.setDesignLoopExitTemperature(82) + elsif loop_type == 'Radiant Hot Water' + loop_sizing.setDesignLoopExitTemperature(60) # ML follows convention of sizing temp being larger than supplu temp + end + loop_sizing.setLoopDesignTemperatureDifference(11) + # create a pump + pump = OpenStudio::Model::PumpVariableSpeed.new(model) + pump.setRatedPumpHead(119563) # Pa + pump.setMotorEfficiency(0.9) + pump.setCoefficient1ofthePartLoadPerformanceCurve(0) + pump.setCoefficient2ofthePartLoadPerformanceCurve(0.0216) + pump.setCoefficient3ofthePartLoadPerformanceCurve(-0.0325) + pump.setCoefficient4ofthePartLoadPerformanceCurve(1.0095) + # create a boiler + boiler = OpenStudio::Model::BoilerHotWater.new(model) + boiler.setNominalThermalEfficiency(0.9) + # create a scheduled setpoint manager + setpoint_manager_scheduled = OpenStudio::Model::SetpointManagerScheduled.new(model, hot_water_setpoint_schedule) + # create a supply bypass pipe + pipe_supply_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a supply outlet pipe + pipe_supply_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand bypass pipe + pipe_demand_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand inlet pipe + pipe_demand_inlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand outlet pipe + pipe_demand_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # connect components to plant loop + # supply side components + hot_water_plant.addSupplyBranchForComponent(boiler) + hot_water_plant.addSupplyBranchForComponent(pipe_supply_bypass) + pump.addToNode(hot_water_plant.supplyInletNode) + pipe_supply_outlet.addToNode(hot_water_plant.supplyOutletNode) + setpoint_manager_scheduled.addToNode(hot_water_plant.supplyOutletNode) + # demand side components (water coils are added as they are added to airloops and zoneHVAC) + hot_water_plant.addDemandBranchForComponent(pipe_demand_bypass) + pipe_demand_inlet.addToNode(hot_water_plant.demandInletNode) + pipe_demand_outlet.addToNode(hot_water_plant.demandOutletNode) + + # pass back hot water plant + result = hot_water_plant + return result + end # end of def + + def self.createChilledWaterPlant(model, runner, chilled_water_setpoint_schedule, loop_type, chillerType) + # chilled water plant + chilled_water_plant = OpenStudio::Model::PlantLoop.new(model) + chilled_water_plant.setName("New #{loop_type} Loop") + chilled_water_plant.setMaximumLoopTemperature(98) + chilled_water_plant.setMinimumLoopTemperature(1) + loop_sizing = chilled_water_plant.sizingPlant + loop_sizing.setLoopType('Cooling') + if loop_type == 'Chilled Water' + loop_sizing.setDesignLoopExitTemperature(6.7) + elsif loop_type == 'Radiant Chilled Water' + loop_sizing.setDesignLoopExitTemperature(15) + end + loop_sizing.setLoopDesignTemperatureDifference(6.7) + # create a pump + pump = OpenStudio::Model::PumpVariableSpeed.new(model) + pump.setRatedPumpHead(149453) # Pa + pump.setMotorEfficiency(0.9) + pump.setCoefficient1ofthePartLoadPerformanceCurve(0) + pump.setCoefficient2ofthePartLoadPerformanceCurve(0.0216) + pump.setCoefficient3ofthePartLoadPerformanceCurve(-0.0325) + pump.setCoefficient4ofthePartLoadPerformanceCurve(1.0095) + # create a chiller + if chillerType == 'WaterCooled' + # create clgCapFuncTempCurve + clgCapFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgCapFuncTempCurve.setCoefficient1Constant(1.07E+00) + clgCapFuncTempCurve.setCoefficient2x(4.29E-02) + clgCapFuncTempCurve.setCoefficient3xPOW2(4.17E-04) + clgCapFuncTempCurve.setCoefficient4y(-8.10E-03) + clgCapFuncTempCurve.setCoefficient5yPOW2(-4.02E-05) + clgCapFuncTempCurve.setCoefficient6xTIMESY(-3.86E-04) + clgCapFuncTempCurve.setMinimumValueofx(0) + clgCapFuncTempCurve.setMaximumValueofx(20) + clgCapFuncTempCurve.setMinimumValueofy(0) + clgCapFuncTempCurve.setMaximumValueofy(50) + # create eirFuncTempCurve + eirFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + eirFuncTempCurve.setCoefficient1Constant(4.68E-01) + eirFuncTempCurve.setCoefficient2x(-1.38E-02) + eirFuncTempCurve.setCoefficient3xPOW2(6.98E-04) + eirFuncTempCurve.setCoefficient4y(1.09E-02) + eirFuncTempCurve.setCoefficient5yPOW2(4.62E-04) + eirFuncTempCurve.setCoefficient6xTIMESY(-6.82E-04) + eirFuncTempCurve.setMinimumValueofx(0) + eirFuncTempCurve.setMaximumValueofx(20) + eirFuncTempCurve.setMinimumValueofy(0) + eirFuncTempCurve.setMaximumValueofy(50) + # create eirFuncPlrCurve + eirFuncPlrCurve = OpenStudio::Model::CurveQuadratic.new(model) + eirFuncPlrCurve.setCoefficient1Constant(1.41E-01) + eirFuncPlrCurve.setCoefficient2x(6.55E-01) + eirFuncPlrCurve.setCoefficient3xPOW2(2.03E-01) + eirFuncPlrCurve.setMinimumValueofx(0) + eirFuncPlrCurve.setMaximumValueofx(1.2) + # construct chiller + chiller = OpenStudio::Model::ChillerElectricEIR.new(model, clgCapFuncTempCurve, eirFuncTempCurve, eirFuncPlrCurve) + chiller.setReferenceCOP(6.1) + chiller.setCondenserType('WaterCooled') + chiller.setChillerFlowMode('ConstantFlow') + elsif chillerType == 'AirCooled' + # create clgCapFuncTempCurve + clgCapFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgCapFuncTempCurve.setCoefficient1Constant(1.05E+00) + clgCapFuncTempCurve.setCoefficient2x(3.36E-02) + clgCapFuncTempCurve.setCoefficient3xPOW2(2.15E-04) + clgCapFuncTempCurve.setCoefficient4y(-5.18E-03) + clgCapFuncTempCurve.setCoefficient5yPOW2(-4.42E-05) + clgCapFuncTempCurve.setCoefficient6xTIMESY(-2.15E-04) + clgCapFuncTempCurve.setMinimumValueofx(0) + clgCapFuncTempCurve.setMaximumValueofx(20) + clgCapFuncTempCurve.setMinimumValueofy(0) + clgCapFuncTempCurve.setMaximumValueofy(50) + # create eirFuncTempCurve + eirFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + eirFuncTempCurve.setCoefficient1Constant(5.83E-01) + eirFuncTempCurve.setCoefficient2x(-4.04E-03) + eirFuncTempCurve.setCoefficient3xPOW2(4.68E-04) + eirFuncTempCurve.setCoefficient4y(-2.24E-04) + eirFuncTempCurve.setCoefficient5yPOW2(4.81E-04) + eirFuncTempCurve.setCoefficient6xTIMESY(-6.82E-04) + eirFuncTempCurve.setMinimumValueofx(0) + eirFuncTempCurve.setMaximumValueofx(20) + eirFuncTempCurve.setMinimumValueofy(0) + eirFuncTempCurve.setMaximumValueofy(50) + # create eirFuncPlrCurve + eirFuncPlrCurve = OpenStudio::Model::CurveQuadratic.new(model) + eirFuncPlrCurve.setCoefficient1Constant(4.19E-02) + eirFuncPlrCurve.setCoefficient2x(6.25E-01) + eirFuncPlrCurve.setCoefficient3xPOW2(3.23E-01) + eirFuncPlrCurve.setMinimumValueofx(0) + eirFuncPlrCurve.setMaximumValueofx(1.2) + # construct chiller + chiller = OpenStudio::Model::ChillerElectricEIR.new(model, clgCapFuncTempCurve, eirFuncTempCurve, eirFuncPlrCurve) + chiller.setReferenceCOP(2.93) + chiller.setCondenserType('AirCooled') + chiller.setChillerFlowMode('ConstantFlow') + end + # create a scheduled setpoint manager + setpoint_manager_scheduled = OpenStudio::Model::SetpointManagerScheduled.new(model, chilled_water_setpoint_schedule) + # create a supply bypass pipe + pipe_supply_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a supply outlet pipe + pipe_supply_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand bypass pipe + pipe_demand_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand inlet pipe + pipe_demand_inlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand outlet pipe + pipe_demand_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # connect components to plant loop + # supply side components + chilled_water_plant.addSupplyBranchForComponent(chiller) + chilled_water_plant.addSupplyBranchForComponent(pipe_supply_bypass) + pump.addToNode(chilled_water_plant.supplyInletNode) + pipe_supply_outlet.addToNode(chilled_water_plant.supplyOutletNode) + setpoint_manager_scheduled.addToNode(chilled_water_plant.supplyOutletNode) + # demand side components (water coils are added as they are added to airloops and ZoneHVAC) + chilled_water_plant.addDemandBranchForComponent(pipe_demand_bypass) + pipe_demand_inlet.addToNode(chilled_water_plant.demandInletNode) + pipe_demand_outlet.addToNode(chilled_water_plant.demandOutletNode) + + # pass back chilled water plant + result = chilled_water_plant + return result + end # end of def + + def self.createCondenserLoop(model, runner, options, parameters) + condenserLoops = {} + # condLoopCoolingTemp_si = OpenStudio::convert(condLoopCoolingTemp,"F","C").get + # condLoopHeatingTemp_si = OpenStudio::convert(parameters["condLoopHeatingTemp"],"F","C").get + # coolingTowerWB_si = OpenStudio::convert(coolingTowerWB,"F","C").get + boilerHWST_si = OpenStudio.convert(parameters['boilerHWST'], 'F', 'C').get + # check for water-cooled chillers + waterCooledChiller = false + model.getChillerElectricEIRs.each do |chiller| + next if waterCooledChiller == true + if chiller.condenserType == 'WaterCooled' + waterCooledChiller = true + end + end + # create condenser loop for water-cooled chillers + if waterCooledChiller + # create condenser loop for water-cooled chiller(s) + condenser_loop = OpenStudio::Model::PlantLoop.new(model) + condenser_loop.setName('New Condenser Loop') + condenser_loop.setMaximumLoopTemperature(80) + condenser_loop.setMinimumLoopTemperature(5) + loop_sizing = condenser_loop.sizingPlant + loop_sizing.setLoopType('Condenser') + loop_sizing.setDesignLoopExitTemperature(29.4) + loop_sizing.setLoopDesignTemperatureDifference(5.6) + # create a pump + pump = OpenStudio::Model::PumpVariableSpeed.new(model) + pump.setRatedPumpHead(134508) # Pa + pump.setMotorEfficiency(0.9) + pump.setCoefficient1ofthePartLoadPerformanceCurve(0) + pump.setCoefficient2ofthePartLoadPerformanceCurve(0.0216) + pump.setCoefficient3ofthePartLoadPerformanceCurve(-0.0325) + pump.setCoefficient4ofthePartLoadPerformanceCurve(1.0095) + # create a cooling tower + tower = OpenStudio::Model::CoolingTowerVariableSpeed.new(model) + # create a supply bypass pipe + pipe_supply_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a supply outlet pipe + pipe_supply_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand bypass pipe + pipe_demand_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand inlet pipe + pipe_demand_inlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand outlet pipe + pipe_demand_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a setpoint manager + setpoint_manager_follow_oa = OpenStudio::Model::SetpointManagerFollowOutdoorAirTemperature.new(model) + setpoint_manager_follow_oa.setOffsetTemperatureDifference(0) + setpoint_manager_follow_oa.setMaximumSetpointTemperature(80) + setpoint_manager_follow_oa.setMinimumSetpointTemperature(5) + # connect components to plant loop + # supply side components + condenser_loop.addSupplyBranchForComponent(tower) + condenser_loop.addSupplyBranchForComponent(pipe_supply_bypass) + pump.addToNode(condenser_loop.supplyInletNode) + pipe_supply_outlet.addToNode(condenser_loop.supplyOutletNode) + setpoint_manager_follow_oa.addToNode(condenser_loop.supplyOutletNode) + # demand side components + model.getChillerElectricEIRs.each do |chiller| + if chiller.condenserType == 'WaterCooled' # works only if chillers not already connected to condenser loop(s) + condenser_loop.addDemandBranchForComponent(chiller) + end + end + condenser_loop.addDemandBranchForComponent(pipe_demand_bypass) + pipe_demand_inlet.addToNode(condenser_loop.demandInletNode) + pipe_demand_outlet.addToNode(condenser_loop.demandOutletNode) + condenserLoops['condenser_loop'] = condenser_loop + end + if (options['zoneHVAC'] == 'WSHP') || (options['zoneHVAC'] == 'GSHP') && options + # create condenser loop for heat pumps + condenser_loop = OpenStudio::Model::PlantLoop.new(model) + condenser_loop.setName('Heat Pump Loop') + condenser_loop.setMaximumLoopTemperature(80) + condenser_loop.setMinimumLoopTemperature(5) + loop_sizing = condenser_loop.sizingPlant + loop_sizing.setLoopType('Condenser') + + if options['zoneHVAC'] == 'GSHP' + loop_sizing.setDesignLoopExitTemperature(32.2) + loop_sizing.setLoopDesignTemperatureDifference(5.5556) + elsif options['zoneHVAC'] == 'WSHP' + loop_sizing.setDesignLoopExitTemperature(32.2) + loop_sizing.setLoopDesignTemperatureDifference(5.5556) + end + # create a pump + pump = OpenStudio::Model::PumpVariableSpeed.new(model) + pump.setRatedPumpHead(134508) # Pa + pump.setMotorEfficiency(0.9) + pump.setCoefficient1ofthePartLoadPerformanceCurve(0) + pump.setCoefficient2ofthePartLoadPerformanceCurve(0.0216) + pump.setCoefficient3ofthePartLoadPerformanceCurve(-0.0325) + pump.setCoefficient4ofthePartLoadPerformanceCurve(1.0095) + # create a supply bypass pipe + pipe_supply_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a supply outlet pipe + pipe_supply_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand bypass pipe + pipe_demand_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand inlet pipe + pipe_demand_inlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand outlet pipe + pipe_demand_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create setpoint managers + setpoint_manager_scheduled_loop = OpenStudio::Model::SetpointManagerScheduled.new(model, options['loop_setpoint_schedule']) + setpoint_manager_scheduled_cooling = OpenStudio::Model::SetpointManagerScheduled.new(model, options['cooling_setpoint_schedule']) + setpoint_manager_scheduled_heating = OpenStudio::Model::SetpointManagerScheduled.new(model, options['heating_setpoint_schedule']) + # connect components to plant loop + # supply side components + condenser_loop.addSupplyBranchForComponent(pipe_supply_bypass) + pump.addToNode(condenser_loop.supplyInletNode) + pipe_supply_outlet.addToNode(condenser_loop.supplyOutletNode) + setpoint_manager_scheduled_loop.addToNode(condenser_loop.supplyOutletNode) + # demand side components + condenser_loop.addDemandBranchForComponent(pipe_demand_bypass) + pipe_demand_inlet.addToNode(condenser_loop.demandInletNode) + pipe_demand_outlet.addToNode(condenser_loop.demandOutletNode) + # add additional components according to specific system type + if options['zoneHVAC'] == 'GSHP' + # add vertical ground heat exchanger + verticalGHX = OpenStudio::Model::GroundHeatExchangerVertical.new(model) + boreHoleLength_si = OpenStudio.convert(parameters['boreHoleLength'], 'ft', 'm').get + boreHoleRadius_si = OpenStudio.convert(parameters['boreHoleRadius'], 'in', 'm').get + groundKValue_si = OpenStudio.convert(parameters['groundKValue'], 'Btu/ft*h*R', 'W/m*K').get + groutKValue_si = OpenStudio.convert(parameters['groutKValue'], 'Btu/ft*h*R', 'W/m*K').get + verticalGHX.setNumberofBoreHoles(parameters['boreHoleNo']) + verticalGHX.setBoreHoleLength(boreHoleLength_si) + verticalGHX.setBoreHoleRadius(boreHoleRadius_si) + verticalGHX.setGroundThermalConductivity(groundKValue_si) + verticalGHX.setGroutThermalConductivity(groutKValue_si) + condenser_loop.addSupplyBranchForComponent(verticalGHX) + # setpoint_manager_scheduled_heating.addToNode(verticalGHX.outletModelObject.get.to_Node.get) + # add supplemental heating boiler + if parameters['supplementalBoiler'] == 'Yes' + boiler = OpenStudio::Model::BoilerHotWater.new(model) + boiler.setNominalCapacity(parameters['boilerCap'] * 1000000) + boiler.setNominalThermalEfficiency(parameters['boilerEff']) + boiler.setFuelType(parameters['boilerFuelType']) + boiler.setDesignWaterOutletTemperature(boilerHWST_si) + boiler.addToNode(verticalGHX.outletModelObject.get.to_Node.get) + # condenser_loop.addSupplyBranchForComponent(boiler) + # setpoint_manager_scheduled_heating.addToNode(boiler.outletModelObject.get.to_Node.get) + end + # add heat pumps to demand side after they get created + elsif options['zoneHVAC'] == 'WSHP' + # add a boiler and cooling tower to supply side + # create a boiler + boiler = OpenStudio::Model::BoilerHotWater.new(model) + boiler.setNominalThermalEfficiency(parameters['boilerEff']) + boiler.setFuelType(parameters['boilerFuelType']) + boiler.setDesignWaterOutletTemperature(parameters['boilerHWST']) + condenser_loop.addSupplyBranchForComponent(boiler) + setpoint_manager_scheduled_heating.addToNode(boiler.outletModelObject.get.to_Node.get) + # create a cooling tower + tower = OpenStudio::Model::CoolingTowerVariableSpeed.new(model) + # tower.setDesignInletAirWetBulbTemperature(coolingTowerWB_si) + # tower.setDesignApproachTemperature(coolingTowerApproach/1.8) + # tower.setDesignRangeTemperature(coolingTowerDeltaT/1.8) + tower.addToNode(boiler.outletModelObject.get.to_Node.get) + setpoint_manager_scheduled_cooling.addToNode(tower.outletModelObject.get.to_Node.get) + end + condenserLoops['heat_pump_loop'] = condenser_loop + end + + # pass back condenser loop(s) + result = condenserLoops + return result + end # end of def + + def self.createPrimaryAirLoops(model, runner, options, parameters) + primary_airloops = [] + # create primary airloop for each story + assignedThermalZones = [] + model.getBuildingStorys.sort.each do |building_story| + # ML stories need to be reordered from the ground up + thermalZonesToAdd = [] + building_story.spaces.each do |space| + # make sure spaces are assigned to thermal zones + # otherwise might want to send a warning + if space.thermalZone.is_initialized + thermal_zone = space.thermalZone.get + # grab primary zones + if options['zonesPrimary'].include? thermal_zone + # make sure zone was not already assigned to another air loop + unless assignedThermalZones.include? thermal_zone + # make sure thermal zones are not duplicated (spaces can share thermal zones) + unless thermalZonesToAdd.include? thermal_zone + thermalZonesToAdd << thermal_zone + end + end + end + end + end + # make sure thermal zones don't get added to more than one air loop + assignedThermalZones << thermalZonesToAdd + + # create new air loop if story contains primary zones + unless thermalZonesToAdd.empty? + airloop_primary = OpenStudio::Model::AirLoopHVAC.new(model) + airloop_primary.setName("DOAS - #{building_story.name}") + # modify system sizing properties + sizing_system = airloop_primary.sizingSystem + # set central heating and cooling temperatures for sizing + sizing_system.setCentralCoolingDesignSupplyAirTemperature(12.8) + sizing_system.setCentralHeatingDesignSupplyAirTemperature(40) # ML OS default is 16.7 + # load specification + sizing_system.setSystemOutdoorAirMethod('VentilationRateProcedure') # ML OS default is ZoneSum + if options['primaryHVAC']['doas'] + sizing_system.setTypeofLoadtoSizeOn('VentilationRequirement') # DOAS + sizing_system.setAllOutdoorAirinCooling(true) # DOAS + sizing_system.setAllOutdoorAirinHeating(true) # DOAS + else + sizing_system.setTypeofLoadtoSizeOn('Sensible') # VAV + sizing_system.setAllOutdoorAirinCooling(false) # VAV + sizing_system.setAllOutdoorAirinHeating(false) # VAV + end + + air_loop_comps = [] + # set availability schedule + airloop_primary.setAvailabilitySchedule(options['hvac_schedule']) + # create air loop fan + if options['primaryHVAC']['fan'] == 'Variable' + # create variable speed fan and set system sizing accordingly + sizing_system.setMinimumSystemAirFlowRatio(0.3) # DCV + # variable speed fan + fan = OpenStudio::Model::FanVariableVolume.new(model, model.alwaysOnDiscreteSchedule) + fan.setFanEfficiency(0.69) + fan.setPressureRise(1125) # Pa + fan.autosizeMaximumFlowRate + fan.setFanPowerMinimumFlowFraction(0.6) + fan.setMotorEfficiency(0.9) + fan.setMotorInAirstreamFraction(1.0) + air_loop_comps << fan + else + sizing_system.setMinimumSystemAirFlowRatio(1.0) # No DCV + # constant speed fan + fan = OpenStudio::Model::FanConstantVolume.new(model, model.alwaysOnDiscreteSchedule) + fan.setFanEfficiency(0.6) + fan.setPressureRise(500) # Pa + fan.autosizeMaximumFlowRate + fan.setMotorEfficiency(0.9) + fan.setMotorInAirstreamFraction(1.0) + air_loop_comps << fan + end + # create heating coil + if options['primaryHVAC']['heat'] == 'Water' + # water coil + heating_coil = OpenStudio::Model::CoilHeatingWater.new(model, model.alwaysOnDiscreteSchedule) + air_loop_comps << heating_coil + else + # gas coil + heating_coil = OpenStudio::Model::CoilHeatingGas.new(model, model.alwaysOnDiscreteSchedule) + air_loop_comps << heating_coil + end + # create cooling coil + if options['primaryHVAC']['cool'] == 'Water' + # water coil + cooling_coil = OpenStudio::Model::CoilCoolingWater.new(model, model.alwaysOnDiscreteSchedule) + air_loop_comps << cooling_coil + elsif options['primaryHVAC']['cool'] == 'SingleDX' + # single speed DX coil + # create cooling coil + # create clgCapFuncTempCurve + clgCapFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgCapFuncTempCurve.setCoefficient1Constant(0.42415) + clgCapFuncTempCurve.setCoefficient2x(0.04426) + clgCapFuncTempCurve.setCoefficient3xPOW2(-0.00042) + clgCapFuncTempCurve.setCoefficient4y(0.00333) + clgCapFuncTempCurve.setCoefficient5yPOW2(-0.00008) + clgCapFuncTempCurve.setCoefficient6xTIMESY(-0.00021) + clgCapFuncTempCurve.setMinimumValueofx(17) + clgCapFuncTempCurve.setMaximumValueofx(22) + clgCapFuncTempCurve.setMinimumValueofy(13) + clgCapFuncTempCurve.setMaximumValueofy(46) + # create clgCapFuncFlowFracCurve + clgCapFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgCapFuncFlowFracCurve.setCoefficient1Constant(0.77136) + clgCapFuncFlowFracCurve.setCoefficient2x(0.34053) + clgCapFuncFlowFracCurve.setCoefficient3xPOW2(-0.11088) + clgCapFuncFlowFracCurve.setMinimumValueofx(0.75918) + clgCapFuncFlowFracCurve.setMaximumValueofx(1.13877) + # create clgEirFuncTempCurve + clgEirFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgEirFuncTempCurve.setCoefficient1Constant(1.23649) + clgEirFuncTempCurve.setCoefficient2x(-0.02431) + clgEirFuncTempCurve.setCoefficient3xPOW2(0.00057) + clgEirFuncTempCurve.setCoefficient4y(-0.01434) + clgEirFuncTempCurve.setCoefficient5yPOW2(0.00063) + clgEirFuncTempCurve.setCoefficient6xTIMESY(-0.00038) + clgEirFuncTempCurve.setMinimumValueofx(17) + clgEirFuncTempCurve.setMaximumValueofx(22) + clgEirFuncTempCurve.setMinimumValueofy(13) + clgEirFuncTempCurve.setMaximumValueofy(46) + # create clgEirFuncFlowFracCurve + clgEirFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgEirFuncFlowFracCurve.setCoefficient1Constant(1.20550) + clgEirFuncFlowFracCurve.setCoefficient2x(-0.32953) + clgEirFuncFlowFracCurve.setCoefficient3xPOW2(0.12308) + clgEirFuncFlowFracCurve.setMinimumValueofx(0.75918) + clgEirFuncFlowFracCurve.setMaximumValueofx(1.13877) + # create clgPlrCurve + clgPlrCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgPlrCurve.setCoefficient1Constant(0.77100) + clgPlrCurve.setCoefficient2x(0.22900) + clgPlrCurve.setCoefficient3xPOW2(0.0) + clgPlrCurve.setMinimumValueofx(0.0) + clgPlrCurve.setMaximumValueofx(1.0) + # cooling coil + cooling_coil = OpenStudio::Model::CoilCoolingDXSingleSpeed.new(model, + model.alwaysOnDiscreteSchedule, + clgCapFuncTempCurve, + clgCapFuncFlowFracCurve, + clgEirFuncTempCurve, + clgEirFuncFlowFracCurve, + clgPlrCurve) + cooling_coil.setRatedCOP(OpenStudio::OptionalDouble.new(parameters['doasDXEER'] / 3.412)) + air_loop_comps << cooling_coil + else + # two speed DX coil (PNNL curves) + # create cooling coil + # create clgCapFuncTempCurve + clgCapFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgCapFuncTempCurve.setCoefficient1Constant(1.39072) + clgCapFuncTempCurve.setCoefficient2x(-0.0529058) + clgCapFuncTempCurve.setCoefficient3xPOW2(0.0018423) + clgCapFuncTempCurve.setCoefficient4y(0.00058267) + clgCapFuncTempCurve.setCoefficient5yPOW2(-0.000186814) + clgCapFuncTempCurve.setCoefficient6xTIMESY(0.000265159) + clgCapFuncTempCurve.setMinimumValueofx(16.5556) + clgCapFuncTempCurve.setMaximumValueofx(22.1111) + clgCapFuncTempCurve.setMinimumValueofy(23.7778) + clgCapFuncTempCurve.setMaximumValueofy(47.66) + # create clgCapFuncFlowFracCurve + clgCapFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgCapFuncFlowFracCurve.setCoefficient1Constant(0.718954) + clgCapFuncFlowFracCurve.setCoefficient2x(0.435436) + clgCapFuncFlowFracCurve.setCoefficient3xPOW2(-0.154193) + clgCapFuncFlowFracCurve.setMinimumValueofx(0.75) + clgCapFuncFlowFracCurve.setMaximumValueofx(1.25) + # create clgEirFuncTempCurve + clgEirFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgEirFuncTempCurve.setCoefficient1Constant(-0.536161) + clgEirFuncTempCurve.setCoefficient2x(0.105138) + clgEirFuncTempCurve.setCoefficient3xPOW2(-0.00172659) + clgEirFuncTempCurve.setCoefficient4y(0.0149848) + clgEirFuncTempCurve.setCoefficient5yPOW2(0.000659948) + clgEirFuncTempCurve.setCoefficient6xTIMESY(-0.0017385) + clgEirFuncTempCurve.setMinimumValueofx(16.5556) + clgEirFuncTempCurve.setMaximumValueofx(22.1111) + clgEirFuncTempCurve.setMinimumValueofy(23.7778) + clgEirFuncTempCurve.setMaximumValueofy(47.66) + # create clgEirFuncFlowFracCurve + clgEirFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgEirFuncFlowFracCurve.setCoefficient1Constant(1.19525) + clgEirFuncFlowFracCurve.setCoefficient2x(-0.306138) + clgEirFuncFlowFracCurve.setCoefficient3xPOW2(0.110973) + clgEirFuncFlowFracCurve.setMinimumValueofx(0.75) + clgEirFuncFlowFracCurve.setMaximumValueofx(1.25) + # create clgPlrCurve + clgPlrCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgPlrCurve.setCoefficient1Constant(0.77100) + clgPlrCurve.setCoefficient2x(0.22900) + clgPlrCurve.setCoefficient3xPOW2(0.0) + clgPlrCurve.setMinimumValueofx(0.0) + clgPlrCurve.setMaximumValueofx(1.0) + # cooling coil + cooling_coil = OpenStudio::Model::CoilCoolingDXTwoSpeed.new(model, + model.alwaysOnDiscreteSchedule, + clgCapFuncTempCurve, + clgCapFuncFlowFracCurve, + clgEirFuncTempCurve, + clgEirFuncFlowFracCurve, + clgPlrCurve, + clgCapFuncTempCurve, + clgEirFuncTempCurve) + cooling_coil.setRatedHighSpeedCOP(parameters['doasDXEER'] / 3.412) + cooling_coil.setRatedLowSpeedCOP(parameters['doasDXEER'] / 3.412) + air_loop_comps << cooling_coil + end + unless options['zoneHVAC'] == 'DualDuct' + # create controller outdoor air + controller_OA = OpenStudio::Model::ControllerOutdoorAir.new(model) + controller_OA.autosizeMinimumOutdoorAirFlowRate + controller_OA.autosizeMaximumOutdoorAirFlowRate + # create ventilation schedules and assign to OA controller + if options['primaryHVAC']['doas'] + controller_OA.setMinimumFractionofOutdoorAirSchedule(model.alwaysOnDiscreteSchedule) + controller_OA.setMaximumFractionofOutdoorAirSchedule(model.alwaysOnDiscreteSchedule) + else + # multizone VAV that ventilates + controller_OA.setMaximumFractionofOutdoorAirSchedule(options['ventilation_schedule']) + controller_OA.setEconomizerControlType('DifferentialEnthalpy') + # add night cycling (ML would people actually do this for a VAV system?)) + airloop_primary.setNightCycleControlType('CycleOnAny') # ML Does this work with variable speed fans? + end + controller_OA.setHeatRecoveryBypassControlType('BypassWhenOAFlowGreaterThanMinimum') + # create outdoor air system + system_OA = OpenStudio::Model::AirLoopHVACOutdoorAirSystem.new(model, controller_OA) + air_loop_comps << system_OA + # create Evaporative cooler + unless parameters['doasEvap'] == 'none' + evap_cooler = OpenStudio::Model::EvaporativeCoolerDirectResearchSpecial.new(model, model.alwaysOnDiscreteSchedule) + evap_cooler.setCoolerEffectiveness(0.85) + end + # create ERV + unless parameters['doasERV'] == 'none' + heat_exchanger = OpenStudio::Model::HeatExchangerAirToAirSensibleAndLatent.new(model) + heat_exchanger.setAvailabilitySchedule(model.alwaysOnDiscreteSchedule) + if parameters['doasERV'] == 'rotary wheel w/o economizer lockout' + sensible_eff = 0.75 + latent_eff = 0.69 + # heat_exchanger.setEconomizerLockout(false) + heat_exchanger.setString(23, 'No') + elsif parameters['doasERV'] == 'rotary wheel w/ economizer lockout' + sensible_eff = 0.75 + latent_eff = 0.69 + # heat_exchanger.setEconomizerLockout(true) + heat_exchanger.setString(23, 'Yes') + elsif parameters['doasERV'] == 'plate w/o economizer lockout' + sensible_eff = 0.52 + latent_eff = 0.50 + # heat_exchanger.setEconomizerLockout(false) + heat_exchanger.setString(23, 'No') + elsif parameters['doasERV'] == 'plate w/ economizer lockout' + sensible_eff = 0.52 + latent_eff = 0.50 + # heat_exchanger.setEconomizerLockout(true) + heat_exchanger.setString(23, 'Yes') + end + heat_exchanger.setSensibleEffectivenessat100CoolingAirFlow(sensible_eff) + heat_exchanger.setSensibleEffectivenessat100HeatingAirFlow(sensible_eff) + heat_exchanger.setSensibleEffectivenessat75CoolingAirFlow(sensible_eff) + heat_exchanger.setSensibleEffectivenessat75HeatingAirFlow(sensible_eff) + heat_exchanger.setLatentEffectivenessat100CoolingAirFlow(latent_eff) + heat_exchanger.setLatentEffectivenessat100HeatingAirFlow(latent_eff) + heat_exchanger.setLatentEffectivenessat75CoolingAirFlow(latent_eff) + heat_exchanger.setLatentEffectivenessat75HeatingAirFlow(latent_eff) + heat_exchanger.setFrostControlType('ExhaustOnly') + heat_exchanger.setThresholdTemperature(-12.2) + heat_exchanger.setInitialDefrostTimeFraction(0.1670) + heat_exchanger.setRateofDefrostTimeFractionIncrease(0.0240) + end + + end + # create scheduled setpoint manager for airloop + if options['primaryHVAC']['doas'] || (options['zoneHVAC'] == 'DualDuct') + # DOAS or VAV for cooling and not ventilation + setpoint_manager = OpenStudio::Model::SetpointManagerScheduled.new(model, options['primary_sat_schedule']) + else + # VAV for cooling and ventilation + setpoint_manager = OpenStudio::Model::SetpointManagerOutdoorAirReset.new(model) + setpoint_manager.setSetpointatOutdoorLowTemperature(15.6) + setpoint_manager.setOutdoorLowTemperature(14.4) + setpoint_manager.setSetpointatOutdoorHighTemperature(12.8) + setpoint_manager.setOutdoorHighTemperature(21.1) + end + # connect components to airloop + # find the supply inlet node of the airloop + airloop_supply_inlet = airloop_primary.supplyInletNode + # add the components to the airloop + air_loop_comps.each do |comp| + comp.addToNode(airloop_supply_inlet) + if comp.to_CoilHeatingWater.is_initialized + options['hot_water_plant'].addDemandBranchForComponent(comp) + comp.controllerWaterCoil.get.setMinimumActuatedFlow(0) + elsif comp.to_CoilCoolingWater.is_initialized + options['chilled_water_plant'].addDemandBranchForComponent(comp) + comp.controllerWaterCoil.get.setMinimumActuatedFlow(0) + end + end + unless (options['zoneHVAC'] == 'DualDuct') || (parameters['doasERV'] == 'none') + heat_exchanger.addToNode(system_OA.outboardOANode.get) + end + + unless parameters['doasEvap'] == 'none' + if parameters['doasERV'] == 'none' + evap_cooler.addToNode(system_OA.outboardOANode.get) + else + hxPrimary_outlet_node = heat_exchanger.primaryAirOutletModelObject.get.to_Node.get + evap_cooler.addToNode(hxPrimary_outlet_node) + end + end + + # add setpoint manager to supply equipment outlet node + setpoint_manager.addToNode(airloop_primary.supplyOutletNode) + # add thermal zones to airloop + thermalZonesToAdd.each do |zone| + # make an air terminal for the zone + if options['primaryHVAC']['fan'] == 'Variable' + air_terminal = OpenStudio::Model::AirTerminalSingleDuctVAVNoReheat.new(model, model.alwaysOnDiscreteSchedule) + else + air_terminal = OpenStudio::Model::AirTerminalSingleDuctUncontrolled.new(model, model.alwaysOnDiscreteSchedule) + end + # attach new terminal to the zone and to the airloop + airloop_primary.addBranchForZone(zone, air_terminal.to_StraightComponent) + end + primary_airloops << airloop_primary + end + end + + # pass back primary airloops + result = primary_airloops + return result + end # end of def + + def self.createSecondaryAirLoops(model, runner, options) + secondary_airloops = [] + # create secondary airloop for each secondary zone + model.getThermalZones.each do |zone| + if options['zonesSecondary'].include? zone + # create secondary airloop + airloop_secondary = OpenStudio::Model::AirLoopHVAC.new(model) + airloop_secondary.setName("New Air Loop HVAC #{zone.name}") + # modify system sizing properties + sizing_system = airloop_secondary.sizingSystem + # set central heating and cooling temperatures for sizing + sizing_system.setCentralCoolingDesignSupplyAirTemperature(12.8) + sizing_system.setCentralHeatingDesignSupplyAirTemperature(40) # ML OS default is 16.7 + # load specification + sizing_system.setSystemOutdoorAirMethod('VentilationRateProcedure') # ML OS default is ZoneSum + sizing_system.setTypeofLoadtoSizeOn('Sensible') # PSZ + sizing_system.setAllOutdoorAirinCooling(false) # PSZ + sizing_system.setAllOutdoorAirinHeating(false) # PSZ + sizing_system.setMinimumSystemAirFlowRatio(1.0) # Constant volume fan + air_loop_comps = [] + # set availability schedule (HVAC operation schedule) + airloop_secondary.setAvailabilitySchedule(options['hvac_schedule']) + if options['secondaryHVAC']['fan'] == 'Variable' + # create variable speed fan and set system sizing accordingly + sizing_system.setMinimumSystemAirFlowRatio(0.3) # DCV + # variable speed fan + fan = OpenStudio::Model::FanVariableVolume.new(model, model.alwaysOnDiscreteSchedule) + fan.setFanEfficiency(0.69) + fan.setPressureRise(1125) # Pa + fan.autosizeMaximumFlowRate + fan.setFanPowerMinimumFlowFraction(0.6) + fan.setMotorEfficiency(0.9) + fan.setMotorInAirstreamFraction(1.0) + air_loop_comps << fan + else + sizing_system.setMinimumSystemAirFlowRatio(1.0) # No DCV + # constant speed fan + fan = OpenStudio::Model::FanConstantVolume.new(model, model.alwaysOnDiscreteSchedule) + fan.setFanEfficiency(0.6) + fan.setPressureRise(500) # Pa + fan.autosizeMaximumFlowRate + fan.setMotorEfficiency(0.9) + fan.setMotorInAirstreamFraction(1.0) + air_loop_comps << fan + end + # create cooling coil + if options['secondaryHVAC']['cool'] == 'Water' + # water coil + cooling_coil = OpenStudio::Model::CoilCoolingWater.new(model, model.alwaysOnDiscreteSchedule) + air_loop_comps << cooling_coil + elsif options['secondaryHVAC']['cool'] == 'SingleDX' + # single speed DX coil + # create cooling coil + # create clgCapFuncTempCurve + clgCapFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgCapFuncTempCurve.setCoefficient1Constant(0.42415) + clgCapFuncTempCurve.setCoefficient2x(0.04426) + clgCapFuncTempCurve.setCoefficient3xPOW2(-0.00042) + clgCapFuncTempCurve.setCoefficient4y(0.00333) + clgCapFuncTempCurve.setCoefficient5yPOW2(-0.00008) + clgCapFuncTempCurve.setCoefficient6xTIMESY(-0.00021) + clgCapFuncTempCurve.setMinimumValueofx(17) + clgCapFuncTempCurve.setMaximumValueofx(22) + clgCapFuncTempCurve.setMinimumValueofy(13) + clgCapFuncTempCurve.setMaximumValueofy(46) + # create clgCapFuncFlowFracCurve + clgCapFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgCapFuncFlowFracCurve.setCoefficient1Constant(0.77136) + clgCapFuncFlowFracCurve.setCoefficient2x(0.34053) + clgCapFuncFlowFracCurve.setCoefficient3xPOW2(-0.11088) + clgCapFuncFlowFracCurve.setMinimumValueofx(0.75918) + clgCapFuncFlowFracCurve.setMaximumValueofx(1.13877) + # create clgEirFuncTempCurve + clgEirFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgEirFuncTempCurve.setCoefficient1Constant(1.23649) + clgEirFuncTempCurve.setCoefficient2x(-0.02431) + clgEirFuncTempCurve.setCoefficient3xPOW2(0.00057) + clgEirFuncTempCurve.setCoefficient4y(-0.01434) + clgEirFuncTempCurve.setCoefficient5yPOW2(0.00063) + clgEirFuncTempCurve.setCoefficient6xTIMESY(-0.00038) + clgEirFuncTempCurve.setMinimumValueofx(17) + clgEirFuncTempCurve.setMaximumValueofx(22) + clgEirFuncTempCurve.setMinimumValueofy(13) + clgEirFuncTempCurve.setMaximumValueofy(46) + # create clgEirFuncFlowFracCurve + clgEirFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgEirFuncFlowFracCurve.setCoefficient1Constant(1.20550) + clgEirFuncFlowFracCurve.setCoefficient2x(-0.32953) + clgEirFuncFlowFracCurve.setCoefficient3xPOW2(0.12308) + clgEirFuncFlowFracCurve.setMinimumValueofx(0.75918) + clgEirFuncFlowFracCurve.setMaximumValueofx(1.13877) + # create clgPlrCurve + clgPlrCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgPlrCurve.setCoefficient1Constant(0.77100) + clgPlrCurve.setCoefficient2x(0.22900) + clgPlrCurve.setCoefficient3xPOW2(0.0) + clgPlrCurve.setMinimumValueofx(0.0) + clgPlrCurve.setMaximumValueofx(1.0) + # cooling coil + cooling_coil = OpenStudio::Model::CoilCoolingDXSingleSpeed.new(model, + model.alwaysOnDiscreteSchedule, + clgCapFuncTempCurve, + clgCapFuncFlowFracCurve, + clgEirFuncTempCurve, + clgEirFuncFlowFracCurve, + clgPlrCurve) + cooling_coil.setRatedCOP(OpenStudio::OptionalDouble.new(4)) + air_loop_comps << cooling_coil + else + # two speed DX coil (PNNL curves) + # create cooling coil + # create clgCapFuncTempCurve + clgCapFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgCapFuncTempCurve.setCoefficient1Constant(1.39072) + clgCapFuncTempCurve.setCoefficient2x(-0.0529058) + clgCapFuncTempCurve.setCoefficient3xPOW2(0.0018423) + clgCapFuncTempCurve.setCoefficient4y(0.00058267) + clgCapFuncTempCurve.setCoefficient5yPOW2(-0.000186814) + clgCapFuncTempCurve.setCoefficient6xTIMESY(0.000265159) + clgCapFuncTempCurve.setMinimumValueofx(16.5556) + clgCapFuncTempCurve.setMaximumValueofx(22.1111) + clgCapFuncTempCurve.setMinimumValueofy(23.7778) + clgCapFuncTempCurve.setMaximumValueofy(47.66) + # create clgCapFuncFlowFracCurve + clgCapFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgCapFuncFlowFracCurve.setCoefficient1Constant(0.718954) + clgCapFuncFlowFracCurve.setCoefficient2x(0.435436) + clgCapFuncFlowFracCurve.setCoefficient3xPOW2(-0.154193) + clgCapFuncFlowFracCurve.setMinimumValueofx(0.75) + clgCapFuncFlowFracCurve.setMaximumValueofx(1.25) + # create clgEirFuncTempCurve + clgEirFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgEirFuncTempCurve.setCoefficient1Constant(-0.536161) + clgEirFuncTempCurve.setCoefficient2x(0.105138) + clgEirFuncTempCurve.setCoefficient3xPOW2(-0.00172659) + clgEirFuncTempCurve.setCoefficient4y(0.0149848) + clgEirFuncTempCurve.setCoefficient5yPOW2(0.000659948) + clgEirFuncTempCurve.setCoefficient6xTIMESY(-0.0017385) + clgEirFuncTempCurve.setMinimumValueofx(16.5556) + clgEirFuncTempCurve.setMaximumValueofx(22.1111) + clgEirFuncTempCurve.setMinimumValueofy(23.7778) + clgEirFuncTempCurve.setMaximumValueofy(47.66) + # create clgEirFuncFlowFracCurve + clgEirFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgEirFuncFlowFracCurve.setCoefficient1Constant(1.19525) + clgEirFuncFlowFracCurve.setCoefficient2x(-0.306138) + clgEirFuncFlowFracCurve.setCoefficient3xPOW2(0.110973) + clgEirFuncFlowFracCurve.setMinimumValueofx(0.75) + clgEirFuncFlowFracCurve.setMaximumValueofx(1.25) + # create clgPlrCurve + clgPlrCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgPlrCurve.setCoefficient1Constant(0.77100) + clgPlrCurve.setCoefficient2x(0.22900) + clgPlrCurve.setCoefficient3xPOW2(0.0) + clgPlrCurve.setMinimumValueofx(0.0) + clgPlrCurve.setMaximumValueofx(1.0) + # cooling coil + cooling_coil = OpenStudio::Model::CoilCoolingDXTwoSpeed.new(model, + model.alwaysOnDiscreteSchedule, + clgCapFuncTempCurve, + clgCapFuncFlowFracCurve, + clgEirFuncTempCurve, + clgEirFuncFlowFracCurve, + clgPlrCurve, + clgCapFuncTempCurve, + clgEirFuncTempCurve) + cooling_coil.setRatedHighSpeedCOP(4) + cooling_coil.setRatedLowSpeedCOP(4) + air_loop_comps << cooling_coil + end + if options['secondaryHVAC']['heat'] == 'Water' + # water coil + heating_coil = OpenStudio::Model::CoilHeatingWater.new(model, model.alwaysOnDiscreteSchedule) + air_loop_comps << heating_coil + else + # gas coil + heating_coil = OpenStudio::Model::CoilHeatingGas.new(model, model.alwaysOnDiscreteSchedule) + air_loop_comps << heating_coil + end + # create controller outdoor air + controller_OA = OpenStudio::Model::ControllerOutdoorAir.new(model) + controller_OA.autosizeMinimumOutdoorAirFlowRate + controller_OA.autosizeMaximumOutdoorAirFlowRate + controller_OA.setEconomizerControlType('DifferentialEnthalpy') + controller_OA.setMaximumFractionofOutdoorAirSchedule(options['ventilation_schedule']) + controller_OA.setHeatRecoveryBypassControlType('BypassWhenOAFlowGreaterThanMinimum') + # create outdoor air system + system_OA = OpenStudio::Model::AirLoopHVACOutdoorAirSystem.new(model, controller_OA) + air_loop_comps << system_OA + # create ERV + heat_exchanger = OpenStudio::Model::HeatExchangerAirToAirSensibleAndLatent.new(model) + heat_exchanger.setAvailabilitySchedule(model.alwaysOnDiscreteSchedule) + sensible_eff = 0.75 + latent_eff = 0.69 + heat_exchanger.setSensibleEffectivenessat100CoolingAirFlow(sensible_eff) + heat_exchanger.setSensibleEffectivenessat100HeatingAirFlow(sensible_eff) + heat_exchanger.setSensibleEffectivenessat75CoolingAirFlow(sensible_eff) + heat_exchanger.setSensibleEffectivenessat75HeatingAirFlow(sensible_eff) + heat_exchanger.setLatentEffectivenessat100CoolingAirFlow(latent_eff) + heat_exchanger.setLatentEffectivenessat100HeatingAirFlow(latent_eff) + heat_exchanger.setLatentEffectivenessat75CoolingAirFlow(latent_eff) + heat_exchanger.setLatentEffectivenessat75HeatingAirFlow(latent_eff) + heat_exchanger.setFrostControlType('ExhaustOnly') + heat_exchanger.setThresholdTemperature(-12.2) + heat_exchanger.setInitialDefrostTimeFraction(0.1670) + heat_exchanger.setRateofDefrostTimeFractionIncrease(0.0240) + heat_exchanger.setEconomizerLockout(false) + # create setpoint manager for airloop + setpoint_manager = OpenStudio::Model::SetpointManagerSingleZoneReheat.new(model) + setpoint_manager.setMinimumSupplyAirTemperature(10) + setpoint_manager.setMaximumSupplyAirTemperature(50) + setpoint_manager.setControlZone(zone) + # connect components to airloop + # find the supply inlet node of the airloop + airloop_supply_inlet = airloop_secondary.supplyInletNode + # add the components to the airloop + air_loop_comps.each do |comp| + comp.addToNode(airloop_supply_inlet) + if comp.to_CoilHeatingWater.is_initialized + options['hot_water_plant'].addDemandBranchForComponent(comp) + comp.controllerWaterCoil.get.setMinimumActuatedFlow(0) + elsif comp.to_CoilCoolingWater.is_initialized + options['chilled_water_plant'].addDemandBranchForComponent(comp) + comp.controllerWaterCoil.get.setMinimumActuatedFlow(0) + end + end + # add erv to outdoor air system + heat_exchanger.addToNode(system_OA.outboardOANode.get) + # add setpoint manager to supply equipment outlet node + setpoint_manager.addToNode(airloop_secondary.supplyOutletNode) + # add thermal zone to airloop + if options['secondaryHVAC']['fan'] == 'Variable' + air_terminal = OpenStudio::Model::AirTerminalSingleDuctVAVNoReheat.new(model, model.alwaysOnDiscreteSchedule) + else + air_terminal = OpenStudio::Model::AirTerminalSingleDuctUncontrolled.new(model, model.alwaysOnDiscreteSchedule) + end + # attach new terminal to the zone and to the airloop + airloop_secondary.addBranchForZone(zone, air_terminal.to_StraightComponent) + # add night cycling + airloop_secondary.setNightCycleControlType('CycleOnAny') # ML Does this work with variable speed fans? + secondary_airloops << airloop_secondary + end + end + + # pass back secondary airloops + result = secondary_airloops + return result + end # end of def + + def self.createPrimaryZoneEquipment(model, runner, options, parameters) + model.getThermalZones.each do |zone| + if options['zonesPrimary'].include? zone + if options['zoneHVAC'] == 'FanCoil' + # create fan coil + # create fan + fan = OpenStudio::Model::FanOnOff.new(model, model.alwaysOnDiscreteSchedule) + fan.setFanEfficiency(0.5) + fan.setPressureRise(75) # Pa + fan.autosizeMaximumFlowRate + fan.setMotorEfficiency(0.9) + fan.setMotorInAirstreamFraction(1.0) + # create cooling coil and connect to chilled water plant + cooling_coil = OpenStudio::Model::CoilCoolingWater.new(model, model.alwaysOnDiscreteSchedule) + options['chilled_water_plant'].addDemandBranchForComponent(cooling_coil) + cooling_coil.controllerWaterCoil.get.setMinimumActuatedFlow(0) + # create heating coil and connect to hot water plant + heating_coil = OpenStudio::Model::CoilHeatingWater.new(model, model.alwaysOnDiscreteSchedule) + options['hot_water_plant'].addDemandBranchForComponent(heating_coil) + heating_coil.controllerWaterCoil.get.setMinimumActuatedFlow(0) + # construct fan coil + fan_coil = OpenStudio::Model::ZoneHVACFourPipeFanCoil.new(model, + model.alwaysOnDiscreteSchedule, + fan, + cooling_coil, + heating_coil) + fan_coil.setMaximumOutdoorAirFlowRate(0) + # add fan coil to thermal zone + fan_coil.addToThermalZone(zone) + elsif (options['zoneHVAC'] == 'WSHP') || (options['zoneHVAC'] == 'GSHP') + # create water source heat pump and attach to heat pump loop + # create fan + fan = OpenStudio::Model::FanOnOff.new(model, model.alwaysOnDiscreteSchedule) + fan.setFanEfficiency(0.75) + fan_eff = fan.fanEfficiency + fan.setMotorEfficiency(0.9) + motor_eff = fan.motorEfficiency + fan.autosizeMaximumFlowRate + if parameters['gshpFanType'] == 'PSC' # use 0.3W/cfm, ECM - 0.2W/cfm + watt_per_cfm = 0.30 # W/cfm + else + watt_per_cfm = 0.20 # W/cfm + end + pres_rise = OpenStudio.convert(watt_per_cfm * fan_eff * motor_eff / 0.1175, 'inH_{2}O', 'Pa').get + fan.setPressureRise(pres_rise) # Pa + fan.setMotorInAirstreamFraction(1.0) + # create cooling coil and connect to heat pump loop + cooling_coil = OpenStudio::Model::CoilCoolingWaterToAirHeatPumpEquationFit.new(model) + cooling_coil.setRatedCoolingCoefficientofPerformance(parameters['gshpCoolingEER'] / 3.412) # xf 061014: need to change per fan power and pump power adjustment + cooling_coil.setRatedCoolingCoefficientofPerformance(6.45) + cooling_coil.setTotalCoolingCapacityCoefficient1(-9.149069561) + cooling_coil.setTotalCoolingCapacityCoefficient2(10.87814026) + cooling_coil.setTotalCoolingCapacityCoefficient3(-1.718780157) + cooling_coil.setTotalCoolingCapacityCoefficient4(0.746414818) + cooling_coil.setTotalCoolingCapacityCoefficient5(0.0) + cooling_coil.setSensibleCoolingCapacityCoefficient1(-5.462690012) + cooling_coil.setSensibleCoolingCapacityCoefficient2(17.95968138) + cooling_coil.setSensibleCoolingCapacityCoefficient3(-11.87818402) + cooling_coil.setSensibleCoolingCapacityCoefficient4(-0.980163419) + cooling_coil.setSensibleCoolingCapacityCoefficient5(0.767285761) + cooling_coil.setSensibleCoolingCapacityCoefficient6(0.0) + cooling_coil.setCoolingPowerConsumptionCoefficient1(-3.205409884) + cooling_coil.setCoolingPowerConsumptionCoefficient2(-0.976409399) + cooling_coil.setCoolingPowerConsumptionCoefficient3(3.97892546) + cooling_coil.setCoolingPowerConsumptionCoefficient4(0.938181818) + cooling_coil.setCoolingPowerConsumptionCoefficient5(0.0) + options['heat_pump_loop'].addDemandBranchForComponent(cooling_coil) + # create heating coil and connect to heat pump loop + heating_coil = OpenStudio::Model::CoilHeatingWaterToAirHeatPumpEquationFit.new(model) + heating_coil.setRatedHeatingCoefficientofPerformance(parameters['gshpHeatingCOP']) # xf 061014: need to change per fan power and pump power adjustment + heating_coil.setRatedHeatingCoefficientofPerformance(4.0) + heating_coil.setHeatingCapacityCoefficient1(-1.361311959) + heating_coil.setHeatingCapacityCoefficient2(-2.471798046) + heating_coil.setHeatingCapacityCoefficient3(4.173164514) + heating_coil.setHeatingCapacityCoefficient4(0.640757401) + heating_coil.setHeatingCapacityCoefficient5(0.0) + heating_coil.setHeatingPowerConsumptionCoefficient1(-2.176941116) + heating_coil.setHeatingPowerConsumptionCoefficient2(0.832114286) + heating_coil.setHeatingPowerConsumptionCoefficient3(1.570743399) + heating_coil.setHeatingPowerConsumptionCoefficient4(0.690793651) + heating_coil.setHeatingPowerConsumptionCoefficient5(0.0) + options['heat_pump_loop'].addDemandBranchForComponent(heating_coil) + # create supplemental heating coil + supplemental_heating_coil = OpenStudio::Model::CoilHeatingElectric.new(model, model.alwaysOnDiscreteSchedule) + # construct heat pump + heat_pump = OpenStudio::Model::ZoneHVACWaterToAirHeatPump.new(model, + model.alwaysOnDiscreteSchedule, + fan, + heating_coil, + cooling_coil, + supplemental_heating_coil) + heat_pump.setSupplyAirFlowRateWhenNoCoolingorHeatingisNeeded(OpenStudio::OptionalDouble.new(0)) + heat_pump.setOutdoorAirFlowRateDuringCoolingOperation(OpenStudio::OptionalDouble.new(0)) + heat_pump.setOutdoorAirFlowRateDuringHeatingOperation(OpenStudio::OptionalDouble.new(0)) + heat_pump.setOutdoorAirFlowRateWhenNoCoolingorHeatingisNeeded(OpenStudio::OptionalDouble.new(0)) + # add heat pump to thermal zone + heat_pump.addToThermalZone(zone) + elsif options['zoneHVAC'] == 'ASHP' + # create air source heat pump + # create fan + fan = OpenStudio::Model::FanOnOff.new(model, model.alwaysOnDiscreteSchedule) + fan.setFanEfficiency(0.5) + fan.setPressureRise(75) # Pa + fan.autosizeMaximumFlowRate + fan.setMotorEfficiency(0.9) + fan.setMotorInAirstreamFraction(1.0) + # create heating coil + # create htgCapFuncTempCurve + htgCapFuncTempCurve = OpenStudio::Model::CurveCubic.new(model) + htgCapFuncTempCurve.setCoefficient1Constant(0.758746) + htgCapFuncTempCurve.setCoefficient2x(0.027626) + htgCapFuncTempCurve.setCoefficient3xPOW2(0.000148716) + htgCapFuncTempCurve.setCoefficient4xPOW3(0.0000034992) + htgCapFuncTempCurve.setMinimumValueofx(-20) + htgCapFuncTempCurve.setMaximumValueofx(20) + # create htgCapFuncFlowFracCurve + htgCapFuncFlowFracCurve = OpenStudio::Model::CurveCubic.new(model) + htgCapFuncFlowFracCurve.setCoefficient1Constant(0.84) + htgCapFuncFlowFracCurve.setCoefficient2x(0.16) + htgCapFuncFlowFracCurve.setCoefficient3xPOW2(0) + htgCapFuncFlowFracCurve.setCoefficient4xPOW3(0) + htgCapFuncFlowFracCurve.setMinimumValueofx(0.5) + htgCapFuncFlowFracCurve.setMaximumValueofx(1.5) + # create htgEirFuncTempCurve + htgEirFuncTempCurve = OpenStudio::Model::CurveCubic.new(model) + htgEirFuncTempCurve.setCoefficient1Constant(1.19248) + htgEirFuncTempCurve.setCoefficient2x(-0.0300438) + htgEirFuncTempCurve.setCoefficient3xPOW2(0.00103745) + htgEirFuncTempCurve.setCoefficient4xPOW3(-0.000023328) + htgEirFuncTempCurve.setMinimumValueofx(-20) + htgEirFuncTempCurve.setMaximumValueofx(20) + # create htgEirFuncFlowFracCurve + htgEirFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + htgEirFuncFlowFracCurve.setCoefficient1Constant(1.3824) + htgEirFuncFlowFracCurve.setCoefficient2x(-0.4336) + htgEirFuncFlowFracCurve.setCoefficient3xPOW2(0.0512) + htgEirFuncFlowFracCurve.setMinimumValueofx(0) + htgEirFuncFlowFracCurve.setMaximumValueofx(1) + # create htgPlrCurve + htgPlrCurve = OpenStudio::Model::CurveQuadratic.new(model) + htgPlrCurve.setCoefficient1Constant(0.75) + htgPlrCurve.setCoefficient2x(0.25) + htgPlrCurve.setCoefficient3xPOW2(0.0) + htgPlrCurve.setMinimumValueofx(0.0) + htgPlrCurve.setMaximumValueofx(1.0) + # heating coil + heating_coil = OpenStudio::Model::CoilHeatingDXSingleSpeed.new(model, + model.alwaysOnDiscreteSchedule, + htgCapFuncTempCurve, + htgCapFuncFlowFracCurve, + htgEirFuncTempCurve, + htgEirFuncFlowFracCurve, + htgPlrCurve) + heating_coil.setRatedCOP(3.4) + heating_coil.setCrankcaseHeaterCapacity(200) + heating_coil.setMaximumOutdoorDryBulbTemperatureforCrankcaseHeaterOperation(8) + heating_coil.autosizeResistiveDefrostHeaterCapacity + # create cooling coil + # create clgCapFuncTempCurve + clgCapFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgCapFuncTempCurve.setCoefficient1Constant(0.942587793) + clgCapFuncTempCurve.setCoefficient2x(0.009543347) + clgCapFuncTempCurve.setCoefficient3xPOW2(0.0018423) + clgCapFuncTempCurve.setCoefficient4y(-0.011042676) + clgCapFuncTempCurve.setCoefficient5yPOW2(0.000005249) + clgCapFuncTempCurve.setCoefficient6xTIMESY(-0.000009720) + clgCapFuncTempCurve.setMinimumValueofx(17) + clgCapFuncTempCurve.setMaximumValueofx(22) + clgCapFuncTempCurve.setMinimumValueofy(13) + clgCapFuncTempCurve.setMaximumValueofy(46) + # create clgCapFuncFlowFracCurve + clgCapFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgCapFuncFlowFracCurve.setCoefficient1Constant(0.718954) + clgCapFuncFlowFracCurve.setCoefficient2x(0.435436) + clgCapFuncFlowFracCurve.setCoefficient3xPOW2(-0.154193) + clgCapFuncFlowFracCurve.setMinimumValueofx(0.75) + clgCapFuncFlowFracCurve.setMaximumValueofx(1.25) + # create clgEirFuncTempCurve + clgEirFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgEirFuncTempCurve.setCoefficient1Constant(0.342414409) + clgEirFuncTempCurve.setCoefficient2x(0.034885008) + clgEirFuncTempCurve.setCoefficient3xPOW2(-0.000623700) + clgEirFuncTempCurve.setCoefficient4y(0.004977216) + clgEirFuncTempCurve.setCoefficient5yPOW2(0.000437951) + clgEirFuncTempCurve.setCoefficient6xTIMESY(-0.000728028) + clgEirFuncTempCurve.setMinimumValueofx(17) + clgEirFuncTempCurve.setMaximumValueofx(22) + clgEirFuncTempCurve.setMinimumValueofy(13) + clgEirFuncTempCurve.setMaximumValueofy(46) + # create clgEirFuncFlowFracCurve + clgEirFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgEirFuncFlowFracCurve.setCoefficient1Constant(1.1552) + clgEirFuncFlowFracCurve.setCoefficient2x(-0.1808) + clgEirFuncFlowFracCurve.setCoefficient3xPOW2(0.0256) + clgEirFuncFlowFracCurve.setMinimumValueofx(0.5) + clgEirFuncFlowFracCurve.setMaximumValueofx(1.5) + # create clgPlrCurve + clgPlrCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgPlrCurve.setCoefficient1Constant(0.75) + clgPlrCurve.setCoefficient2x(0.25) + clgPlrCurve.setCoefficient3xPOW2(0.0) + clgPlrCurve.setMinimumValueofx(0.0) + clgPlrCurve.setMaximumValueofx(1.0) + # cooling coil + cooling_coil = OpenStudio::Model::CoilCoolingDXSingleSpeed.new(model, + model.alwaysOnDiscreteSchedule, + clgCapFuncTempCurve, + clgCapFuncFlowFracCurve, + clgEirFuncTempCurve, + clgEirFuncFlowFracCurve, + clgPlrCurve) + cooling_coil.setRatedCOP(OpenStudio::OptionalDouble.new(4)) + # create supplemental heating coil + supplemental_heating_coil = OpenStudio::Model::CoilHeatingElectric.new(model, model.alwaysOnDiscreteSchedule) + # construct heat pump + heat_pump = OpenStudio::Model::ZoneHVACPackagedTerminalHeatPump.new(model, + model.alwaysOnDiscreteSchedule, + fan, + heating_coil, + cooling_coil, + supplemental_heating_coil) + heat_pump.setSupplyAirFlowRateWhenNoCoolingorHeatingisNeeded(0) + heat_pump.setOutdoorAirFlowRateDuringCoolingOperation(0) + heat_pump.setOutdoorAirFlowRateDuringHeatingOperation(0) + heat_pump.setOutdoorAirFlowRateWhenNoCoolingorHeatingisNeeded(0) + # add heat pump to thermal zone + heat_pump.addToThermalZone(zone) + elsif options['zoneHVAC'] == 'Baseboard' + # create baseboard heater add add to thermal zone and hot water loop + baseboard_coil = OpenStudio::Model::CoilHeatingWaterBaseboard.new(model) + baseboard_heater = OpenStudio::Model::ZoneHVACBaseboardConvectiveWater.new(model, model.alwaysOnDiscreteSchedule, baseboard_coil) + baseboard_heater.addToThermalZone(zone) + options['hot_water_plant'].addDemandBranchForComponent(baseboard_coil) + elsif options['zoneHVAC'] == 'Radiant' + # create low temperature radiant object and add to thermal zone and radiant plant loops + # create hot water coil and attach to radiant hot water loop + heating_coil = OpenStudio::Model::CoilHeatingLowTempRadiantVarFlow.new(model, options['mean_radiant_heating_setpoint_schedule']) + options['radiant_hot_water_plant'].addDemandBranchForComponent(heating_coil) + # create chilled water coil and attach to radiant chilled water loop + cooling_coil = OpenStudio::Model::CoilCoolingLowTempRadiantVarFlow.new(model, options['mean_radiant_cooling_setpoint_schedule']) + options['radiant_chilled_water_plant'].addDemandBranchForComponent(cooling_coil) + low_temp_radiant = OpenStudio::Model::ZoneHVACLowTempRadiantVarFlow.new(model, + model.alwaysOnDiscreteSchedule, + heating_coil, + cooling_coil) + low_temp_radiant.setRadiantSurfaceType('Floors') + low_temp_radiant.setHydronicTubingInsideDiameter(0.012) + low_temp_radiant.setTemperatureControlType('MeanRadiantTemperature') + low_temp_radiant.addToThermalZone(zone) + # create radiant floor construction and substitute for existing floor (interior or exterior) constructions + # create materials for radiant floor construction + layers = [] + # ignore layer below insulation, which will depend on boundary condition + layers << rigid_insulation_1in = OpenStudio::Model::StandardOpaqueMaterial.new(model, 'Rough', 0.0254, 0.02, 56.06, 1210) + layers << concrete_2in = OpenStudio::Model::StandardOpaqueMaterial.new(model, 'MediumRough', 0.0508, 2.31, 2322, 832) + layers << concrete_2in + # create radiant floor construction from materials + radiant_floor = OpenStudio::Model::ConstructionWithInternalSource.new(layers) + radiant_floor.setSourcePresentAfterLayerNumber(2) + radiant_floor.setSourcePresentAfterLayerNumber(2) + # assign radiant construction to zone floor + zone.spaces.each do |space| + space.surfaces.each do |surface| + if surface.surfaceType == 'Floor' + surface.setConstruction(radiant_floor) + end + end + end + elsif options['zoneHVAC'] == 'DualDuct' + # create baseboard heater add add to thermal zone and hot water loop + baseboard_coil = OpenStudio::Model::CoilHeatingWaterBaseboard.new(model) + baseboard_heater = OpenStudio::Model::ZoneHVACBaseboardConvectiveWater.new(model, model.alwaysOnDiscreteSchedule, baseboard_coil) + baseboard_heater.addToThermalZone(zone) + options['hot_water_plant'].addDemandBranchForComponent(baseboard_coil) + # create fan coil (to mimic functionality of DOAS) + # variable speed fan + fan = OpenStudio::Model::FanVariableVolume.new(model, model.alwaysOnDiscreteSchedule) + fan.setFanEfficiency(0.69) + fan.setPressureRise(75) # Pa #ML This number is a guess; zone equipment pretending to be a DOAS + fan.autosizeMaximumFlowRate + fan.setFanPowerMinimumFlowFraction(0.6) + fan.setMotorEfficiency(0.9) + fan.setMotorInAirstreamFraction(1.0) + # create chilled water coil and attach to chilled water loop + cooling_coil = OpenStudio::Model::CoilCoolingWater.new(model, model.alwaysOnDiscreteSchedule) + options['chilled_water_plant'].addDemandBranchForComponent(cooling_coil) + cooling_coil.controllerWaterCoil.get.setMinimumActuatedFlow(0) + # create hot water coil and attach to hot water loop + heating_coil = OpenStudio::Model::CoilHeatingWater.new(model, model.alwaysOnDiscreteSchedule) + options['hot_water_plant'].addDemandBranchForComponent(heating_coil) + heating_coil.controllerWaterCoil.get.setMinimumActuatedFlow(0) + # construct fan coil (DOAS) and attach to thermal zone + fan_coil_doas = OpenStudio::Model::ZoneHVACFourPipeFanCoil.new(model, + options['ventilation_schedule'], + fan, + cooling_coil, + heating_coil) + fan_coil_doas.setCapacityControlMethod('VariableFanVariableFlow') + fan_coil_doas.addToThermalZone(zone) + end + end + end + end # end of def + + def self.addDCV(model, runner, options) + options['primary_airloops']&.each do |airloop| + if options['allHVAC']['primary']['fan'] == 'Variable' + if airloop.airLoopHVACOutdoorAirSystem.is_initialized + controller_mv = airloop.airLoopHVACOutdoorAirSystem.get.getControllerOutdoorAir.controllerMechanicalVentilation + controller_mv.setDemandControlledVentilation(true) + runner.registerInfo("Enabling demand control ventilation for #{airloop.name}") + end + end + end + + options['secondary_airloops']&.each do |airloop| + if options['allHVAC']['secondary']['fan'] == 'Variable' + if airloop.airLoopHVACOutdoorAirSystem.is_initialized + controller_mv = airloop.airLoopHVACOutdoorAirSystem.get.getControllerOutdoorAir.controllerMechanicalVentilation + controller_mv.setDemandControlledVentilation(true) + runner.registerInfo("Enabling demand control ventilation for #{airloop.name}") + end + end + end + end # end of def +end diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_HelperMethods.rb b/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_HelperMethods.rb new file mode 100644 index 0000000..9521c67 --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_HelperMethods.rb @@ -0,0 +1,114 @@ +# frozen_string_literal: true + +module OsLib_HelperMethods + # populate choice argument from model objects + def self.populateChoiceArgFromModelObjects(model, modelObject_args_hash, includeBuilding = nil) + # populate choice argument for constructions that are applied to surfaces in the model + modelObject_handles = OpenStudio::StringVector.new + modelObject_display_names = OpenStudio::StringVector.new + + # looping through sorted hash of constructions + modelObject_args_hash.sort.map do |key, value| + modelObject_handles << value.handle.to_s + modelObject_display_names << key + end + + if !includeBuilding.nil? + # add building to string vector with space type + building = model.getBuilding + modelObject_handles << building.handle.to_s + modelObject_display_names << includeBuilding + end + + result = { 'modelObject_handles' => modelObject_handles, 'modelObject_display_names' => modelObject_display_names } + return result + end # end of OsLib_HelperMethods.populateChoiceArgFromModelObjects + + # check choice argument made from model objects + def self.checkChoiceArgFromModelObjects(object, variableName, to_ObjectType, runner, user_arguments) + apply_to_building = false + modelObject = nil + if object.empty? + handle = runner.getStringArgumentValue(variableName, user_arguments) + if handle.empty? + runner.registerError("No #{variableName} was chosen.") # this logic makes this not work on an optional model object argument + else + runner.registerError("The selected #{variableName} with handle '#{handle}' was not found in the model. It may have been removed by another measure.") + end + return false + else + if !eval("object.get.#{to_ObjectType}").empty? + modelObject = eval("object.get.#{to_ObjectType}").get + elsif !object.get.to_Building.empty? + apply_to_building = true + else + runner.registerError("Script Error - argument not showing up as #{variableName}.") + return false + end + end # end of if construction.empty? + + result = { 'modelObject' => modelObject, 'apply_to_building' => apply_to_building } + end # end of OsLib_HelperMethods.checkChoiceArgFromModelObjects + + # check choice argument made from model objects + def self.checkOptionalChoiceArgFromModelObjects(object, variableName, to_ObjectType, runner, user_arguments) + apply_to_building = false + modelObject = nil + if object.empty? + handle = runner.getOptionalStringArgumentValue(variableName, user_arguments) + if handle.empty? + # do nothing, this is a valid option + modelObject = nil + apply_to_building = false + else + runner.registerError("The selected #{variableName} with handle '#{handle}' was not found in the model. It may have been removed by another measure.") + return false + end + else + if !eval("object.get.#{to_ObjectType}").empty? + modelObject = eval("object.get.#{to_ObjectType}").get + elsif !object.get.to_Building.empty? + apply_to_building = true + else + runner.registerError("Script Error - argument not showing up as #{variableName}.") + return false + end + end # end of if construction.empty? + + result = { 'modelObject' => modelObject, 'apply_to_building' => apply_to_building } + end # end of OsLib_HelperMethods.checkChoiceArgFromModelObjects + + # check value of double arguments + def self.checkDoubleArguments(runner, min, max, argumentHash) + # error flag + error = false + + argumentHash.each do |display, argument| + if !min.nil? + if argument < min + runner.registerError("Please enter value between #{min} and #{max} for #{display}.") # add in argument display name + error = true + end + end + if !max.nil? + if argument > max + runner.registerError("Please enter value between #{min} and #{max} for #{display}.") # add in argument display name + error = true + end + end + end # end of argumentArray.each do + + # check for any errors + if error + return false + else + return true + end + end # end of OsLib_HelperMethods.checkDoubleArguments + + # OpenStudio has built in toNeatString method + # OpenStudio::toNeatString(double,2,true)# double,decimals, show commas + + # OpenStudio has built in helper for unit conversion. That can be done using OpenStudio::convert() as shown below. + # OpenStudio::convert(double,"from unit string","to unit string").get +end diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_LightingAndEquipment.rb b/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_LightingAndEquipment.rb new file mode 100644 index 0000000..535391e --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_LightingAndEquipment.rb @@ -0,0 +1,99 @@ +# frozen_string_literal: true + +require "#{File.dirname(__FILE__)}/OsLib_Schedules" + +# load OpenStudio measure libraries +module OsLib_LightingAndEquipment + include OsLib_Schedules + + # return min ans max from array + def self.getExteriorLightsValue(model) + facility = model.getFacility + starting_exterior_lights_power = 0 + starting_exterior_lights = facility.exteriorLights + starting_exterior_lights.each do |starting_exterior_light| + starting_exterior_light_multiplier = starting_exterior_light.multiplier + starting_exterior_light_def = starting_exterior_light.exteriorLightsDefinition + starting_exterior_light_base_power = starting_exterior_light_def.designLevel + starting_exterior_lights_power += starting_exterior_light_base_power * starting_exterior_light_multiplier + end + + result = { 'exteriorLightingPower' => starting_exterior_lights_power, 'exteriorLights' => starting_exterior_lights } + return result + end # end of OsLib_LightingAndEquipment.getExteriorLightsValue + + # return min ans max from array + def self.removeAllExteriorLights(model, runner) + facility = model.getFacility + lightsRemoved = false + starting_exterior_lights = facility.exteriorLights + starting_exterior_lights.each do |starting_exterior_light| + runner.registerInfo("Removed exterior light named #{starting_exterior_light.name}.") + starting_exterior_light.remove + lightsRemoved = true + end + + result = lightsRemoved + return result + end # end of OsLib_LightingAndEquipment.removeAllExteriorLights + + # return min ans max from array + def self.addExteriorLights(model, runner, options = {}) + # set defaults to use if user inputs not passed in + defaults = { + 'name' => 'Exterior Light', + 'power' => 0, + 'subCategory' => 'Exterior Lighting', + 'controlOption' => 'AstronomicalClock', + 'setbackStartTime' => 0, + 'setbackEndTime' => 0, + 'setbackFraction' => 0.25 + } + + # merge user inputs with defaults + options = defaults.merge(options) + + ext_lights_def = OpenStudio::Model::ExteriorLightsDefinition.new(model) + ext_lights_def.setName("#{options['name']} Definition") + runner.registerInfo("Setting #{ext_lights_def.name} to a design power of #{options['power']} Watts") + ext_lights_def.setDesignLevel(options['power']) + + # creating schedule type limits for the exterior lights schedule + ext_lights_sch_type_limits = OpenStudio::Model::ScheduleTypeLimits.new(model) + ext_lights_sch_type_limits.setName("#{options['name']} Fractional") + ext_lights_sch_type_limits.setLowerLimitValue(0) + ext_lights_sch_type_limits.setUpperLimitValue(1) + ext_lights_sch_type_limits.setNumericType('Continuous') + + # prepare values for profile + if options['setbackStartTime'] == 24 + profile = { options['setbackEndTime'] => options['setbackFraction'], 24.0 => 1.0 } + elsif options['setbackStartTime'] == 0 + profile = { options['setbackEndTime'] => options['setbackFraction'], 24.0 => 1.0 } + elsif options['setbackStartTime'] > options['setbackEndTime'] + profile = { options['setbackEndTime'] => options['setbackFraction'], options['setbackStartTime'] => 1.0, 24.0 => options['setbackFraction'] } + else + profile = { options['setbackStartTime'] => 1.0, options['setbackEndTime'] => options['setbackFraction'] } + end + + # inputs + createSimpleSchedule_inputs = { + 'name' => options['name'], + 'winterTimeValuePairs' => profile, + 'summerTimeValuePairs' => profile, + 'defaultTimeValuePairs' => profile + } + + # create a ruleset schedule with a basic profile + ext_lights_sch = OsLib_Schedules.createSimpleSchedule(model, createSimpleSchedule_inputs) + + # creating exterior lights object + ext_lights = OpenStudio::Model::ExteriorLights.new(ext_lights_def, ext_lights_sch) + ext_lights.setName("#{options['power']} w Exterior Light") + ext_lights.setControlOption(options['controlOption']) + ext_lights.setEndUseSubcategory(options['subCategory']) + + result = ext_lights + return result + end # end of OsLib_LightingAndEquipment.addExteriorLights +end diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_Schedules.rb b/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_Schedules.rb new file mode 100644 index 0000000..8f44c78 --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/resources/OsLib_Schedules.rb @@ -0,0 +1,142 @@ +# frozen_string_literal: true + +module OsLib_Schedules + # create a ruleset schedule with a basic profile + def self.createSimpleSchedule(model, options = {}) + defaults = { + 'name' => nil, + 'winterTimeValuePairs' => { 24.0 => 0.0 }, + 'summerTimeValuePairs' => { 24.0 => 1.0 }, + 'defaultTimeValuePairs' => { 24.0 => 1.0 } + } + + # merge user inputs with defaults + options = defaults.merge(options) + + # ScheduleRuleset + sch_ruleset = OpenStudio::Model::ScheduleRuleset.new(model) + if name + sch_ruleset.setName(options['name']) + end + + # Winter Design Day + winter_dsn_day = OpenStudio::Model::ScheduleDay.new(model) + sch_ruleset.setWinterDesignDaySchedule(winter_dsn_day) + winter_dsn_day = sch_ruleset.winterDesignDaySchedule + winter_dsn_day.setName("#{sch_ruleset.name} Winter Design Day") + options['winterTimeValuePairs'].each do |k, v| + hour = k.truncate + min = ((k - hour) * 60).to_i + winter_dsn_day.addValue(OpenStudio::Time.new(0, hour, min, 0), v) + end + + # Summer Design Day + summer_dsn_day = OpenStudio::Model::ScheduleDay.new(model) + sch_ruleset.setSummerDesignDaySchedule(summer_dsn_day) + summer_dsn_day = sch_ruleset.summerDesignDaySchedule + summer_dsn_day.setName("#{sch_ruleset.name} Summer Design Day") + options['summerTimeValuePairs'].each do |k, v| + hour = k.truncate + min = ((k - hour) * 60).to_i + summer_dsn_day.addValue(OpenStudio::Time.new(0, hour, min, 0), v) + end + + # All Days + week_day = sch_ruleset.defaultDaySchedule + week_day.setName("#{sch_ruleset.name} Schedule Week Day") + options['defaultTimeValuePairs'].each do |k, v| + hour = k.truncate + min = ((k - hour) * 60).to_i + week_day.addValue(OpenStudio::Time.new(0, hour, min, 0), v) + end + + result = sch_ruleset + return result + end # end of OsLib_Schedules.createSimpleSchedule + + # create a complex ruleset schedule + def self.createComplexSchedule(model, options = {}) + defaults = { + 'name' => nil, + 'default_day' => ['always_on', [24.0, 1.0]] + } + + # merge user inputs with defaults + options = defaults.merge(options) + + # ScheduleRuleset + sch_ruleset = OpenStudio::Model::ScheduleRuleset.new(model) + if name + sch_ruleset.setName(options['name']) + end + + # Winter Design Day + unless options['winter_design_day'].nil? + winter_dsn_day = OpenStudio::Model::ScheduleDay.new(model) + sch_ruleset.setWinterDesignDaySchedule(winter_dsn_day) + winter_dsn_day = sch_ruleset.winterDesignDaySchedule + winter_dsn_day.setName("#{sch_ruleset.name} Winter Design Day") + options['winter_design_day'].each do |data_pair| + hour = data_pair[0].truncate + min = ((data_pair[0] - hour) * 60).to_i + winter_dsn_day.addValue(OpenStudio::Time.new(0, hour, min, 0), data_pair[1]) + end + end + + # Summer Design Day + unless options['summer_design_day'].nil? + summer_dsn_day = OpenStudio::Model::ScheduleDay.new(model) + sch_ruleset.setSummerDesignDaySchedule(summer_dsn_day) + summer_dsn_day = sch_ruleset.summerDesignDaySchedule + summer_dsn_day.setName("#{sch_ruleset.name} Summer Design Day") + options['summer_design_day'].each do |data_pair| + hour = data_pair[0].truncate + min = ((data_pair[0] - hour) * 60).to_i + summer_dsn_day.addValue(OpenStudio::Time.new(0, hour, min, 0), data_pair[1]) + end + end + + # Default Day + default_day = sch_ruleset.defaultDaySchedule + default_day.setName("#{sch_ruleset.name} #{options['default_day'][0]}") + default_data_array = options['default_day'] + default_data_array.delete_at(0) + default_data_array.each do |data_pair| + hour = data_pair[0].truncate + min = ((data_pair[0] - hour) * 60).to_i + default_day.addValue(OpenStudio::Time.new(0, hour, min, 0), data_pair[1]) + end + + # Rules + options['rules']&.each do |data_array| + rule = OpenStudio::Model::ScheduleRule.new(sch_ruleset) + rule.setName("#{sch_ruleset.name} #{data_array[0]} Rule") + date_range = data_array[1].split('-') + start_date = date_range[0].split('/') + end_date = date_range[1].split('/') + rule.setStartDate(model.getYearDescription.makeDate(start_date[0].to_i, start_date[1].to_i)) + rule.setEndDate(model.getYearDescription.makeDate(end_date[0].to_i, end_date[1].to_i)) + days = data_array[2].split('/') + rule.setApplySunday(true) if days.include? 'Sun' + rule.setApplyMonday(true) if days.include? 'Mon' + rule.setApplyTuesday(true) if days.include? 'Tue' + rule.setApplyWednesday(true) if days.include? 'Wed' + rule.setApplyThursday(true) if days.include? 'Thu' + rule.setApplyFriday(true) if days.include? 'Fri' + rule.setApplySaturday(true) if days.include? 'Sat' + day_schedule = rule.daySchedule + day_schedule.setName("#{sch_ruleset.name} #{data_array[0]}") + data_array.delete_at(0) + data_array.delete_at(0) + data_array.delete_at(0) + data_array.each do |data_pair| + hour = data_pair[0].truncate + min = ((data_pair[0] - hour) * 60).to_i + day_schedule.addValue(OpenStudio::Time.new(0, hour, min, 0), data_pair[1]) + end + end + + result = sch_ruleset + return result + end # end of OsLib_Schedules.createComplexSchedule +end diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/tests/AEDG_HVAC_GenericTestModel_0225_a.osm b/lib/measures/replace_hvac_with_gshp_and_doas/tests/AEDG_HVAC_GenericTestModel_0225_a.osm new file mode 100644 index 0000000..e071aca --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/tests/AEDG_HVAC_GenericTestModel_0225_a.osm @@ -0,0 +1,16664 @@ + +OS:Version, + {5ba4e949-8416-4473-8585-a89dec14d539}, !- Handle + 1.4.0; !- Version Identifier + +OS:Schedule:Constant, + {011a98dd-8a58-4d3c-bb89-45238c4223fb}, !- Handle + Always On Discrete, !- Name + {950ed258-8ff3-4c0a-b895-f6e63be73e26}, !- Schedule Type Limits Name + 1; !- Value + +OS:ScheduleTypeLimits, + {950ed258-8ff3-4c0a-b895-f6e63be73e26}, !- Handle + Always On Discrete Limits, !- Name + 0, !- Lower Limit Value {BasedOnField A4} + 1, !- Upper Limit Value {BasedOnField A4} + Discrete, !- Numeric Type + Availability; !- Unit Type + +OS:Construction, + {c0f458f6-c6a5-4b88-a3a9-d68fae9265f0}, ! Handle + 000 AtticRoof ClimateZone 1-8, ! Name + {8f2a3d5a-9cc6-48e4-80db-4747319a30bd}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 2 + +OS:Construction, + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Handle + 000 ExtSlabCarpet 4in ClimateZone 1-8, ! Name + {7bae279f-a289-4694-ac26-5a556bd6d25d}, ! Surface Rendering Name + {e554b4d5-9806-4622-bd5d-cf19b067ac63}, ! Layer 1 + {3593aa29-509d-4541-bc90-55d6bc20a274}; ! Layer 2 + +OS:Construction, + {cc260c55-549f-40bf-9552-ff45cebcf4ef}, ! Handle + 000 ExtSlabCarpet 8in ClimateZone 1-8, ! Name + {d814d9b4-b7a3-4c3b-9046-8200081e8e9d}, ! Surface Rendering Name + {8afa97e2-cdf9-4b9b-b482-9f36b58e3df0}, ! Layer 1 + {3593aa29-509d-4541-bc90-55d6bc20a274}; ! Layer 2 + +OS:Construction, + {cec3b319-4e1f-4e65-8a4f-09e8102e76bb}, ! Handle + 000 ExtSlab 4in ClimateZone 1-8, ! Name + {7623b45d-1afd-4e50-a5d4-8973e0f50839}, ! Surface Rendering Name + {e554b4d5-9806-4622-bd5d-cf19b067ac63}; ! Layer 1 + +OS:Construction, + {8bcb610f-f05b-4a68-9328-56d717cec878}, ! Handle + 000 ExtSlab 8in ClimateZone 1-8, ! Name + {6bcc9c6f-d160-46e8-84fe-925510531a02}, ! Surface Rendering Name + {8afa97e2-cdf9-4b9b-b482-9f36b58e3df0}; ! Layer 1 + +OS:Construction, + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Handle + 000 Exterior Door, ! Name + {d3a0f803-0902-4452-8351-44cb8ee5fa20}, ! Surface Rendering Name + {1d218594-792b-458c-975b-cd7996781265}, ! Layer 1 + {b17db373-4e6e-4b7d-8516-c410024d24b1}; ! Layer 2 + +OS:Construction, + {29a08e4c-fddd-4b98-af7c-fcd287ed072e}, ! Handle + 000 Exterior Floor, ! Name + {cf93bb9a-a948-420e-8623-5dbd25e9063e}, ! Surface Rendering Name + {af5b7091-c3f8-43a2-8649-aea656cff32a}, ! Layer 1 + {67eea8d7-e2f1-42c7-bf4c-18e4532c3836}; ! Layer 2 + +OS:Construction, + {813415d1-f505-4e0c-953a-49af3e762d48}, ! Handle + 000 Exterior Roof, ! Name + {2f5b9735-dd16-4c9b-aa29-d2a0aa0d89a6}, ! Surface Rendering Name + {2be9922c-b8c7-43fc-b6fb-130ba70b23ad}, ! Layer 1 + {e5ef4582-1ed4-40f7-90f7-b948835c4680}, ! Layer 2 + {1f0b94e3-96e8-4759-9166-250e63a9c9c0}; ! Layer 3 + +OS:Construction, + {6c7472d3-1e4d-47b4-8afb-6733094ed5d7}, ! Handle + 000 Exterior Wall, ! Name + {61d98f2f-703b-40e0-a799-9de5b09dc770}, ! Surface Rendering Name + {d9860975-db36-40d7-b55a-f0e141209648}, ! Layer 1 + {67eea8d7-e2f1-42c7-bf4c-18e4532c3836}, ! Layer 2 + {af5b7091-c3f8-43a2-8649-aea656cff32a}, ! Layer 3 + {efc63ac2-25cf-4878-8100-f1e2d1f7e2f5}, ! Layer 4 + {4fe86c6d-f73e-4893-b73f-ddf808c38106}; ! Layer 5 + +OS:Construction, + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Handle + 000 Exterior Window, ! Name + {4e3d8c9a-e205-4b43-97a1-9ed42b4426ed}, ! Surface Rendering Name + {165e9f00-cc09-48c1-a4c2-8d6534c9a8c5}, ! Layer 1 + {aa07cd9d-3f86-4662-af87-f8a7f0077477}, ! Layer 2 + {165e9f00-cc09-48c1-a4c2-8d6534c9a8c5}; ! Layer 3 + +OS:Construction, + {305c1cce-364a-4113-af8d-9f7f6db58322}, ! Handle + 000 Interior Ceiling, ! Name + {dc72bc9f-18f7-440c-b7c2-fe001cfd1243}, ! Surface Rendering Name + {2be9922c-b8c7-43fc-b6fb-130ba70b23ad}, ! Layer 1 + {e5ef4582-1ed4-40f7-90f7-b948835c4680}, ! Layer 2 + {1f0b94e3-96e8-4759-9166-250e63a9c9c0}; ! Layer 3 + +OS:Construction, + {1ccc9476-7cb0-40f8-bffb-3d7f62f32c66}, ! Handle + 000 Interior Door, ! Name + {cd92f89b-4f39-4135-b4a2-17275db6be50}, ! Surface Rendering Name + {9e8fa22b-2f2c-4eb5-bc58-d1eb1139d1e2}; ! Layer 1 + +OS:Construction, + {07092fd3-9719-4a3a-851a-61e694c7b2e6}, ! Handle + 000 Interior Floor, ! Name + {77cbc9c8-66df-4480-8d8c-d5a4529f1e25}, ! Surface Rendering Name + {1f0b94e3-96e8-4759-9166-250e63a9c9c0}, ! Layer 1 + {e5ef4582-1ed4-40f7-90f7-b948835c4680}, ! Layer 2 + {2be9922c-b8c7-43fc-b6fb-130ba70b23ad}; ! Layer 3 + +OS:Construction, + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Handle + 000 Interior Partition, ! Name + {1210254c-7ac7-419d-a0ba-ce4fee5f6560}, ! Surface Rendering Name + {9e8fa22b-2f2c-4eb5-bc58-d1eb1139d1e2}; ! Layer 1 + +OS:Construction, + {e6ff48b6-cff2-4bb8-aed2-df3c527afd49}, ! Handle + 000 Interior Wall, ! Name + {813d283b-bc32-489c-b121-283a449f2f77}, ! Surface Rendering Name + {4fe86c6d-f73e-4893-b73f-ddf808c38106}, ! Layer 1 + {efc63ac2-25cf-4878-8100-f1e2d1f7e2f5}, ! Layer 2 + {4fe86c6d-f73e-4893-b73f-ddf808c38106}; ! Layer 3 + +OS:Construction, + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Handle + 000 Interior Window, ! Name + {22291e90-630d-428d-b67b-05ecd302f0f3}, ! Surface Rendering Name + {165e9f00-cc09-48c1-a4c2-8d6534c9a8c5}; ! Layer 1 + +OS:Construction, + {eb533a9c-a1c2-4578-a32e-5f8e4cc87afe}, ! Handle + ASHRAE 189.1-2009 AtticFloor ClimateZone 1-8, ! Name + {ae99e112-c3ee-41d0-8bef-ee0758bc55b8}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {f540da24-ef80-427d-ad40-f8507345b349}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {977371f4-689a-41c6-8642-8f68aff9537c}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 1, ! Name + {8a992e70-c129-403b-8b13-93c9738bc546}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {31d26021-19ad-4a4d-a584-52dc9eb24335}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {16ca3b6f-5a0a-498e-bd42-63229111ebd8}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 2-5, ! Name + {4976e445-718a-404e-a33d-90431b9e5d21}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {de583ecd-8cdf-4470-be9c-15b83f7ae0f4}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {a8e21ad8-1c9d-4d7f-8664-133b46f7a330}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 6, ! Name + {5b498fa7-bba3-4431-9656-a98e927ab5f9}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {e387406e-bc63-4782-8f37-c622cdefed1a}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {1e828946-1550-434e-9fff-71b43ebfbc38}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 7-8, ! Name + {2ec6f8f3-9084-459e-9f03-aabb569e8e19}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {049623b3-7aca-46bf-a5b2-aaa27e8be5f4}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {ee069e4b-9bda-4ed4-b3c7-8ebcd2e7f175}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 1, ! Name + {7844f75d-587b-41bf-899d-6a75b5418a2a}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {20c8cf47-d89d-4538-813c-3f6e8520475c}; ! Layer 2 + +OS:Construction, + {4bccd4be-3099-4217-b51f-b4af6cb4d169}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 2-5, ! Name + {759d4320-98ad-459d-928d-676d7094d432}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {28b93355-ffe3-4311-9fea-4b6673604390}; ! Layer 2 + +OS:Construction, + {04f25b5d-ff56-467e-8bed-9a4f96cb00aa}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 6, ! Name + {f3efafc1-09d6-4a78-a953-808a39c92dd3}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {c8ffc22b-d016-4ebe-958c-5d6d2e47d0eb}; ! Layer 2 + +OS:Construction, + {29b73155-292d-4557-984c-55329aa1f4c8}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 7-8, ! Name + {8f58adca-a5ac-4d96-b313-ee029c51cbf9}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {3442ccdb-832a-4e4b-a578-7f9ac6908079}; ! Layer 2 + +OS:Construction, + {a50f5a7c-3892-4808-b4c6-0762dabbc4a2}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 1, ! Name + {0dc90870-35ba-4503-ab69-d1203b74ff16}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {a80d3ead-7a84-4c85-b4aa-8aa340918da0}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {9bd5244e-fc36-47e1-a96a-4f936c33a60c}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 2, ! Name + {ba034033-11ee-4894-856c-32d268c2fe48}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {4c012a31-4819-43e8-9e89-aaa84f968cdf}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {f22c7e8d-43ea-4428-9003-38797727c2d0}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 3, ! Name + {d2070426-24f1-4339-a28b-b7c43f5cb0e8}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {344c86df-4ad8-4b79-99c4-a9a82b13f479}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {a12eca10-ec96-4777-8238-7b52f59cd6a2}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 4, ! Name + {5a0f2c49-d318-4bc8-9c7c-b586e648bf1c}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {d42fdb74-e2b1-4c2c-9c0a-ee6bd2f85113}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {2f8e1f0c-04ad-490d-81f5-edf9c9d38d27}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 5, ! Name + {ae945c74-2815-4e9e-a0ba-0616bce0578e}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {8c2dbf29-4947-44a4-a5a8-739f38ac8450}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {74e7d05f-0ce7-4760-9e88-34615d70d3c3}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 6, ! Name + {a7472de2-df9b-444c-ba18-f44613e6983a}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {8b9d564a-0e35-4e32-b53c-e53afd802a3e}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {fe0a828c-db74-442c-a75d-f03952180ea3}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 7-8, ! Name + {f93eb886-3096-4dde-9fc7-fa3d289767ff}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {a19e4898-5fe5-480b-a8a4-7c29b605dcd3}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {8f20c459-4f3c-4481-bf89-78af2c7a0da0}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 1, ! Name + {2bb65d01-dad4-444d-b7b0-4816799d1144}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {4c012a31-4819-43e8-9e89-aaa84f968cdf}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {458b9490-8047-4b34-858f-d861ba50835e}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 2, ! Name + {55f61a60-7f16-473d-a185-fd9e8e250c06}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {344c86df-4ad8-4b79-99c4-a9a82b13f479}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {b17b8317-b420-44e0-b1f7-059c537ac7ce}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 3, ! Name + {81ca4376-a508-4c8c-847d-d70382485466}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {d42fdb74-e2b1-4c2c-9c0a-ee6bd2f85113}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {7aee0b96-f538-46fa-88fd-2ec5df095496}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 4, ! Name + {fad3dbc6-9b8a-40ce-8081-f814e16f28e3}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {8c2dbf29-4947-44a4-a5a8-739f38ac8450}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {a821dffe-af6c-4e47-b7a1-1c40d9aa6083}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 5, ! Name + {7486c56c-a900-403f-89a3-1e4eabfa8124}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {8b9d564a-0e35-4e32-b53c-e53afd802a3e}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {6967c5c6-c589-4c96-9482-bd2f8f0eb29f}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 6, ! Name + {23e60eec-9d05-4168-afb0-bc3cfa277da8}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {a19e4898-5fe5-480b-a8a4-7c29b605dcd3}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {f8071f3f-4038-4a14-96cd-c9195668d990}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 7, ! Name + {d6a7b659-e448-487b-aadd-160a3d87f6b1}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {a19e4898-5fe5-480b-a8a4-7c29b605dcd3}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {87d92f11-1a25-488c-b858-1361fdba93b0}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 8, ! Name + {8e7d04ac-0819-4907-941e-c1fa4494a8c6}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {8ff806a1-7f9c-44d1-9fd8-10fab2b3d86b}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {3fe162b3-9c72-4abe-8d2d-09d7025a0c61}, ! Handle + ASHRAE 189.1-2009 ExtWall Metal ClimateZone 1-3, ! Name + {5400731e-e096-4b6a-a3fa-9079d02cc13c}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {76e750a0-a7e3-47bd-80ae-a931a7bf930f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {56a6f610-77da-4bec-8c60-304c5f29193a}, ! Handle + ASHRAE 189.1-2009 ExtWall Metal ClimateZone 4-8, ! Name + {7a9f7259-6873-4a3a-8c3b-8d22d3501db9}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {49c4b265-13e9-4279-82a4-ef3c5400eb76}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {45f51e73-925b-410b-ac89-a0e3467d0771}, ! Handle + ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 1-3, ! Name + {7ed5eb98-f550-40f4-b8e9-c44844f1f7d0}, ! Surface Rendering Name + {ddfb04c9-cb49-421c-b929-8922fd84bc14}, ! Layer 1 + {8d3443dd-9a8d-4e06-a8a5-ad2d9679b841}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ce0f71d7-73c2-4a1e-b3d3-0e5440ca5296}, ! Handle + ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 4-8, ! Name + {aa2fa94a-f5ed-4039-903b-f4a0811268a0}, ! Surface Rendering Name + {ddfb04c9-cb49-421c-b929-8922fd84bc14}, ! Layer 1 + {9701a490-5af6-40fb-8bb6-2cd3dfab8fad}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {9d53e69c-861e-47b2-8469-a95979596900}, ! Handle + ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 1-4, ! Name + {5f2b0115-75bf-4e9f-9d14-c1b9396f6261}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {0e65f2b1-8ce4-4b8f-8150-be67a72396a0}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {36fa2ae1-6cc9-4493-bae7-c28762868b03}, ! Handle + ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 5, ! Name + {5cd2f84d-2dfd-4573-bfc9-b2a77d0616d8}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {fccd3bb6-cd7e-477f-bd00-e4bf7020e5b6}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {4d96b49c-5258-4da1-9383-5b3ab2a2d46f}, ! Handle + ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 6-8, ! Name + {5dad2af1-dd1d-4b58-bc98-ba22c9f181f9}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {41c10ec3-3e7e-4c92-9de3-4a91a6aeadec}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {c8099665-7d3b-4d7b-8d85-3f1a1b6e9c57}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 1, ! Name + {ab97b6e5-3903-43b9-aad1-d106c7abf6ef}, ! Surface Rendering Name + {405af381-1ff5-45d2-9bca-871321956609}; ! Layer 1 + +OS:Construction, + {425b7cb1-272c-4e02-a98f-161b07082b19}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 2, ! Name + {4ea48022-bbec-4218-b258-cf15497d76d7}, ! Surface Rendering Name + {2cf9ce11-b74c-4b51-ab39-154dcc9d4771}; ! Layer 1 + +OS:Construction, + {246363fd-0aca-4c06-9463-e96291924508}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 3, ! Name + {b4437797-7cef-4ceb-96d1-0570c6b264ae}, ! Surface Rendering Name + {00d2aeb6-20c5-4970-93a6-6d60353270c7}; ! Layer 1 + +OS:Construction, + {cb8c7d4e-9646-4d49-ab15-492be6063a6f}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 4-5, ! Name + {1da1acaa-abf2-4433-a050-2a2cbf45442b}, ! Surface Rendering Name + {6e5b7a44-b8f1-463f-b75f-62bc6a4c0ede}; ! Layer 1 + +OS:Construction, + {147eb040-250b-448b-8759-b552add3f4f5}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 6, ! Name + {56908274-fc3a-4d3d-bf2f-aaca6a9f96d2}, ! Surface Rendering Name + {70760773-5fc1-4d08-8eef-ae2fbabb3d32}; ! Layer 1 + +OS:Construction, + {a3f376a2-bdfc-4315-af96-7011df2f3924}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 7-8, ! Name + {4812629c-f75b-422f-b138-bd798604eb7b}, ! Surface Rendering Name + {d3377fb1-b38b-4635-aa5f-f18ed80acf54}; ! Layer 1 + +OS:Construction, + {10b6d6d6-792e-4e82-9d4c-9a1300540745}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone alt-res 4-5, ! Name + {617f0af7-5f1d-48cf-9960-70851e9284f2}, ! Surface Rendering Name + {70760773-5fc1-4d08-8eef-ae2fbabb3d32}; ! Layer 1 + +OS:Construction, + {f96d6ecc-4d11-4dcc-995e-cb09c19e3a31}, ! Handle + ASHRAE 90.1-2004 AtticFloor ClimateZone 1-5, ! Name + {ae9fc8d2-7a15-4f5a-8c67-4583e48bcf73}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {b4b47bd6-95ee-47ee-ab56-bc441826b03c}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {7a9b0bda-5064-40f2-a9af-57bcb3732523}, ! Handle + ASHRAE 90.1-2004 AtticFloor ClimateZone 6-8, ! Name + {4f734284-54dd-47cf-88b4-16c51190397b}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {3349792b-38e7-4fa2-a666-a7d07edf14ba}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {86115717-6ac2-43f6-a75f-6ada902eb588}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 1-4, ! Name + {e921346c-db99-4133-9067-806085ec979b}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {f84c6785-3d37-4c66-99a9-3bff4334838e}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {fd03cbb3-1345-4e42-9a8c-589aaa532ee6}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 5-6, ! Name + {8a48315d-f678-4301-8484-4113d3b5bf9e}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {7af1df9e-4a42-4957-8b56-d9d80e015351}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {a5e66d6f-9309-4818-83a0-1229969c6918}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 7, ! Name + {8be96dd4-a335-40d8-8b25-f0c43816f7e8}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {f84c6785-3d37-4c66-99a9-3bff4334838e}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {60b9b486-9fea-4fa5-ba03-7a62df6530e1}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 8, ! Name + {fdbdd6c1-0a2f-43b2-a068-d0e41631ea7d}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {5dc32f3b-fcea-4d2a-96ce-b840610baf65}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {2d051e52-346a-4aec-aec7-d2892f57fc9e}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 1, ! Name + {0f837524-9b4a-4547-bef4-b29285d9d3c8}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}; ! Layer 1 + +OS:Construction, + {ad5c12d5-e522-470c-ba46-04891eb1b756}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 2, ! Name + {feaeecac-56e4-4538-b080-9a2a15914e6d}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {44f248c4-37da-42ad-8773-1bf3e9ab646b}; ! Layer 2 + +OS:Construction, + {73c91f6b-7559-469e-b824-6bb0f4711c71}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 3-4, ! Name + {66a12368-1a32-4d8b-b5e7-6ec79de79af0}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {47438003-dd17-400b-9a25-727cda295f7c}; ! Layer 2 + +OS:Construction, + {5b2cfdb5-4ff8-4397-9dc9-0deb0020e764}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 5-6, ! Name + {c7631f0a-0e54-4165-b863-813007dbc8c7}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {2ecd27a2-6bf0-4359-9c23-e67031970553}; ! Layer 2 + +OS:Construction, + {ff84e539-03b3-48d8-aee7-376fb6d1565f}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 7, ! Name + {114de8bc-a767-4ffe-8208-1e3615aa9fc0}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {47438003-dd17-400b-9a25-727cda295f7c}; ! Layer 2 + +OS:Construction, + {05f078ce-d548-4971-9732-f44885398a09}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 8, ! Name + {c2ac665d-dcc6-4355-b799-bf3c1c0fcc09}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {8b3150a6-4f07-40e2-ba11-dce1bf83169b}; ! Layer 2 + +OS:Construction, + {80767779-8344-43f0-ba90-ed9029bc6e27}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 1-2, ! Name + {45e1dcc5-591f-4946-bbf5-05607f4244f2}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {eaf52fe1-7221-4d0b-9d42-f35d07576843}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 3-4, ! Name + {7d7e2bfd-f9a7-4d13-9ae4-80c00bf7a742}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {d901e9ce-e0ad-4727-a22e-c98d3ff2ad3d}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {6ed9efd0-1fc6-4d54-864f-2073fca44a42}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 5, ! Name + {b92b35cb-01e6-4ab9-9655-82643f140b76}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {3683b4f9-ea08-4624-9f6d-b52efc0262d0}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {42e42dfb-b154-45f0-a7cc-2d45bb907cc0}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 6, ! Name + {88bab52e-b838-4a40-870c-f7db3fb30e6e}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {18de8fd5-ce43-4dfb-86a4-7ae97ca77b36}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {c0067702-8df2-47a5-a6d4-031ac377067a}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 7, ! Name + {fbd85bef-0824-4ac4-bcb7-023d2b668fd5}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {2a062da2-674a-4ec6-bed2-7b1317449d3a}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {6ac4ee74-30db-4ce6-8a40-0141bff6ec01}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 8, ! Name + {40f3bfef-bf87-49ab-8404-488a213a36c4}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {c04e605c-13b9-4d84-8928-6246e812f5e6}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {6f584301-e880-42c8-8677-a4aa51c2dffa}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 1-2, ! Name + {e93362f6-cd75-465d-badb-8772a9a878dc}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {d901e9ce-e0ad-4727-a22e-c98d3ff2ad3d}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {bef36c22-102a-44dc-950b-77cdf59fa055}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 3, ! Name + {668374ea-48a1-404b-b05e-6b526689ec1d}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {3683b4f9-ea08-4624-9f6d-b52efc0262d0}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {40b9761a-604e-44e5-89fc-b968926485bc}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 4, ! Name + {f8b15c3c-f345-4aff-ae1c-b30291af6ae1}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {18de8fd5-ce43-4dfb-86a4-7ae97ca77b36}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {9571c8d7-72ac-4034-9e91-7b4b350d835f}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 5-6, ! Name + {ab8dbd3a-a4c1-43cd-9ab7-6e6ba514b9e8}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {2a062da2-674a-4ec6-bed2-7b1317449d3a}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {d9730ea2-2791-4821-9e8d-96e3204035e2}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 7, ! Name + {75dcefd3-517a-4efa-ba1a-70a1b1aca1c0}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {c04e605c-13b9-4d84-8928-6246e812f5e6}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {8247d411-7552-403d-99ea-2ad0ae6df19d}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 8, ! Name + {19194a1d-e464-4609-a589-e7a2a05c0cfe}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {e7e84922-5a9e-48a5-a9e5-afd9baa53d1d}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {27e1a3aa-64e1-4f56-90cb-cf39b41532f9}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 1, ! Name + {1421f1b7-085d-4154-a2b6-fac857076801}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 2 + +OS:Construction, + {96d46661-9340-4023-874e-0c4d5d2e3914}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 2-3, ! Name + {5f58ba6c-8132-413b-91d3-35d370a9253c}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {83bbe90d-602f-4224-9893-83136b51bf4d}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {1c35925d-2192-410f-b839-92dc55b8ada6}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 4, ! Name + {70350214-8af5-4d2c-a46d-108f5f9d2f92}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {fb697fab-8967-4d6e-80b1-74d1e710f97a}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {239a9a4a-3dff-43b5-ada6-6642b855fa49}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 5, ! Name + {9c054d76-e292-4f75-95ac-375b2276806a}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {a9ff92d5-25f5-4f59-a507-2af6536d5ebc}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {48539533-a935-43c1-9c54-0b70fb335385}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 6-8, ! Name + {f8a91a38-ff32-45da-b4cd-cee4a1bc3ba2}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {3d460e61-5e0a-40f6-b397-bf8990c81085}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {69c0432a-a291-42fe-967d-79fb70e6f68b}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 1-4, ! Name + {7f007c93-c5ee-439c-bc52-21c8f948c4d2}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {5345e826-350b-4b9e-b3a0-687082089267}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {8dbd7e3e-62fc-4d8b-81eb-32251586ffe4}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 5-6, ! Name + {b455493b-cf36-496d-b6c8-16c0685575ee}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {d5a9b5b8-e008-4a7a-925f-948053eb59b2}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {30ac70f8-4997-4d5e-b52d-01267d095c8f}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 7-8, ! Name + {833e8d8b-56c8-4ea7-adcf-a5adf38b6904}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {8a2cd04f-bd95-490d-82e2-1b8453cca103}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {effb323d-16bd-44d3-824d-851a5d37ffc7}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 3, ! Name + {3b4a8573-972f-42ed-a36d-a53877b7383d}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {d5a9b5b8-e008-4a7a-925f-948053eb59b2}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {1999a5ef-7bc4-4cc4-82e3-d1bb213de638}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 4-6, ! Name + {965c8993-83e0-46b1-be21-593be34abb11}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {8a2cd04f-bd95-490d-82e2-1b8453cca103}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {535eb3f8-9e5d-4a7a-bde5-6bab4c67b704}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 8, ! Name + {238ccbec-0407-4579-a404-1cacef82238d}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {a6d71516-e3d6-4a49-a581-874fe66ca8f3}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {257e2d55-24ce-4a1c-b2c1-b4d2d70a9db5}, ! Handle + ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 1-7, ! Name + {4dca5ed6-d704-4334-8ec6-653dbff131e7}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {3ae6885a-f3c0-45a9-afad-82e1b9ba4d6e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {e31e9a59-5f94-426d-8967-d1446880e94c}, ! Handle + ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 8, ! Name + {ad1987ec-f445-4571-95f5-f5914197a980}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {fb85a288-c42b-428b-9ea4-fd75691f1b8c}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {5d51a133-05c5-4228-ba67-3c4ba4d0bb27}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 1-2, ! Name + {629f5df4-c7b6-4ac0-afa1-7feb3878178c}, ! Surface Rendering Name + {792bbea6-984c-4239-a3a1-502aeb832ac7}; ! Layer 1 + +OS:Construction, + {c9df6abf-d698-4097-8afa-8a4539b85d79}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 3a-3b, ! Name + {c77e95a2-1007-44af-a260-4836538b6f58}, ! Surface Rendering Name + {e0fc2e96-467e-44c2-bbc6-e0e0d6f74bdc}; ! Layer 1 + +OS:Construction, + {12ddfc25-687a-464d-8793-d0729f049b82}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 3c, ! Name + {cc0c385b-1564-41c5-b1dc-0d539a582989}, ! Surface Rendering Name + {54ad2b47-0435-473d-9508-37d1eb940eb5}; ! Layer 1 + +OS:Construction, + {b46f753c-f0ce-4a6e-a6cb-0112ac1afdaa}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 4-6, ! Name + {c8900b40-3cca-4149-a194-187407b9b7ea}, ! Surface Rendering Name + {704ddf45-6d9d-4d66-82bf-948789672bc7}; ! Layer 1 + +OS:Construction, + {603cae7f-41c1-4140-888a-0d6a375e14da}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 7, ! Name + {6278f54e-a787-4fdb-8650-f9cc51404402}, ! Surface Rendering Name + {2369133b-4af8-4174-a00e-a29539b38735}; ! Layer 1 + +OS:Construction, + {e6837572-78f1-4a8e-b3ba-2276c336b19e}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 8, ! Name + {a1483ca7-7c5e-44fa-adbf-dd8e783f3844}, ! Surface Rendering Name + {7223656d-4d0c-438a-95c5-483f090f2844}; ! Layer 1 + +OS:Construction, + {9f8e38ee-6a4b-4b02-bbe9-0f13537f36e7}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 3c, ! Name + {12b257fc-5699-4129-b055-36ad60b34592}, ! Surface Rendering Name + {ee541d06-6fcb-44a7-b092-f03bae0a8b53}; ! Layer 1 + +OS:Construction, + {6bb414d6-7c7e-4447-a983-6ada144948a1}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 4-6, ! Name + {84060026-cb34-4558-9975-d20233f3a9c2}, ! Surface Rendering Name + {dc8a6b59-d6c6-422d-942a-229e57751214}; ! Layer 1 + +OS:Construction, + {3b85dbbc-126d-4364-93e7-cb2a2a879d6c}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 7, ! Name + {4d8ec304-f18e-4355-ad0a-14962f861b52}, ! Surface Rendering Name + {e4e66954-ddba-476c-a5d2-9cbb2c32ebb5}; ! Layer 1 + +OS:Construction, + {5252e579-4b1a-4331-be35-2fed98b1e9ad}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 8, ! Name + {7656c713-6331-42bd-9446-d9e0d6291682}, ! Surface Rendering Name + {7b6a48a2-9018-430e-89fb-9c974d092c6d}; ! Layer 1 + +OS:Construction, + {e5d7ba85-16fd-4d7c-aab4-6e8d7fb54c0e}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resA 3a-3b, ! Name + {44fa9f76-5af4-4d45-938c-6a1e36b02fd1}, ! Surface Rendering Name + {dc8a6b59-d6c6-422d-942a-229e57751214}; ! Layer 1 + +OS:Construction, + {8f92085f-62b2-4854-bd60-d3d23c53fde6}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resH 3a-3b, ! Name + {5b46c887-c1c9-4dd4-80fe-aed1721c82dd}, ! Surface Rendering Name + {704ddf45-6d9d-4d66-82bf-948789672bc7}; ! Layer 1 + +OS:Construction, + {b82af5d4-7bb2-4a18-be21-7556f3807c99}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-ware 1-8, ! Name + {613e7502-cbd5-4212-bc61-c965f18f8695}, ! Surface Rendering Name + {5bf309c9-492b-42b2-9717-17726104670a}; ! Layer 1 + +OS:Construction, + {c57e29cf-23f8-4daf-990d-c7815b26ae9b}, ! Handle + Air Wall, ! Name + {5ba0efe6-6ab9-4236-9afd-7dc2e63a5a9d}, ! Surface Rendering Name + {d796cb9d-bda0-4151-b548-1464bc99e97b}; ! Layer 1 + +OS:Construction, + {c1b1be10-71b8-44a0-b417-8f7b85a92d5b}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 1, ! Name + {1ea15f5f-b5b2-42e8-a49b-1905ed90ecea}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {94733413-a109-4816-8e36-d55a91398732}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {811ac54a-5fcc-48ca-9724-f8d48ba93034}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2a, ! Name + {55e2f197-2d3b-4660-810f-1496f534fd7a}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {f63a12b5-5b3b-4431-a7d1-6102de327439}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {135c35c3-1f21-4cd1-925e-c78a105e1881}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2b, ! Name + {3b16a88b-7dcc-431e-bb93-56c33cc3aa1f}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {3787390a-031c-4c3c-a80b-03e435f686c6}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ff4aaa21-4dd0-4819-9f0d-4468b3d817ba}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3a, ! Name + {36917857-c616-4166-80b0-65f5b5765603}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {447c32b2-6b85-4e77-b4c5-b8f411adeb04}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {b4b1f792-3d6c-4ebe-a78c-e71df7473302}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAS, ! Name + {b129c33b-8802-4959-a326-1581617d12ea}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {16b6d464-339f-4e73-871a-b446bcb1856a}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {b3375f02-5597-419f-9b42-9b8fdbc909d8}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAX, ! Name + {fdfa413d-b28d-4613-9d45-4b319cc1db5b}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {c20942b9-37de-435d-86ad-c3fc584ce8e0}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {e9be867f-16c9-4f9f-86f0-d54d9b679d89}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3c, ! Name + {ff259fd3-df02-485c-bd72-fe46a3b2226a}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {40b59514-ff72-4c51-84fb-b7736f31b538}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {aac7b317-7fc4-4430-a24c-dcf307685db7}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4a, ! Name + {477ce77d-fbc0-45e4-8d67-3ac03f9b80df}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {9f389579-0d9c-495f-8ae3-382eaac3cd7f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {6f96a8be-3be0-4dbc-82dc-4fcd870db6e3}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4b, ! Name + {9bd499c5-ceeb-4797-83f6-c89184a19088}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {77b26504-2009-4b81-bdad-8f821d1a00f9}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {77e8e331-c395-473c-8b81-b69cfc2dabbd}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4c, ! Name + {ce6473cd-8ae9-4a12-8f02-f456e5b7f2a0}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {20e542e2-9a72-4e02-a2e0-4c2493ad98ee}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {a0631693-d632-4ca8-8705-3ccc8f25d399}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5a, ! Name + {5598edc1-476a-40c3-8e5c-00ca46d81d4c}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {395a9280-7ad1-4a3d-886e-3bdc54706855}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {607b0be9-0b70-4647-9ab4-61cfb10cc341}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5b, ! Name + {8220a842-da79-4147-8b40-fd5210792e47}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {1f77fbf0-7ad4-4450-9382-1eb1554a444c}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {692255cd-a647-4ff2-9092-f9e14e2ca4ee}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6a, ! Name + {d004aa0b-c5c2-4c0c-87c4-e8620bad2b24}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {14f95637-0415-4665-a114-78d9a1e5550f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {1ed460e0-bdb3-4a37-852b-f1588b630f19}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6b, ! Name + {bf0a6d10-89b8-460c-b114-39a580667f57}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {0dde938b-bdaf-489d-ae05-9841769cc73e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {0930bf2f-6299-433f-bd0b-1a65eb3d3861}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 7, ! Name + {ef2a6cde-cc50-4811-a45f-c8b965e59350}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {55e7acf8-273f-4291-abd7-a194649038aa}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ec3a08d9-217b-4001-b2bd-305f3eb7e970}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 8, ! Name + {432721f8-b1c5-4701-a1ad-5bb95e544da3}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {0b38724a-9bfa-4d69-842f-7080bc1fb7ba}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {8c38de40-9814-4b87-ab70-aa6d5de8b222}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 1, ! Name + {cf554a3e-9e5e-4fc5-9c96-069315c2d422}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {f59f2aff-3f1b-49f8-872e-5f4a23ba58cb}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {17567edd-77c5-4970-a431-d588b38999be}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 2a, ! Name + {dc9d2133-44ed-4d8e-88e4-a721214d3b02}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {76b8044d-c15f-4d39-923b-cd18d50eaf30}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {3cafeaf1-daf6-4e03-8abf-9552f68c2653}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 2b, ! Name + {42e77966-533f-495a-b709-e0315e14e134}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {a1b53888-4d6a-4a54-afad-4bc86bda8dd5}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {67cdd7ff-a241-4ebb-ade0-a0329dcba876}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3a, ! Name + {8630f26b-8dc1-4e95-a2df-98e5ba119c28}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {55ab0a86-0a8d-4a52-a736-749d935dae58}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {5929a8a2-0840-4121-a1a0-a72eedb0ad4d}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAS, ! Name + {8c1b81ea-3c84-49db-9ed8-6a1f322e20ad}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {0adc43b2-4e37-43c1-9970-77d58c387ef0}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {91138a30-0037-49e7-ab7a-0b60734dcd50}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAX, ! Name + {8178e09e-1125-4ff7-be1a-df85b0d04725}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {aed17da6-63d5-4b8f-8f07-4b30d5fb9ae2}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {e8fc7e37-3932-4e54-baf4-acdac5b64c6a}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3c, ! Name + {921bce36-0107-45c0-b84c-3654c577e1c8}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {db899a26-c96b-4d3c-84bc-a9a1982d3f33}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {b3945bd3-5dd7-49f6-be6f-6e451ec91d32}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 4a, ! Name + {a5d20a29-7d22-4988-bb68-d1b6748c9142}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {d0695b3f-29e3-4841-9f7d-5cc390cb67bd}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {251c04df-5ae8-4673-a3d4-e806b66fe9be}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 4b, ! Name + {1bea94f5-f68d-4fe6-8ab2-3f77b4df5f7d}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {b6fd9dc9-1b4b-4590-b2d9-d6731170144a}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {c54b5d4a-4ddd-4db8-abb8-dbc0dd03f837}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 4c, ! Name + {b6123c0e-9bf6-44ac-bbef-1dbb222e6477}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {a22b9ed6-b9d7-48c5-a520-71b717dc72a3}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {7fa202b0-f318-461c-8eae-a5b2d1eb84ae}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 5a, ! Name + {1fedafc0-0210-4ab4-bc75-3afc67aa0800}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {f7b481d5-1ff4-4ffe-b67a-5a9c9ffdf008}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {1dd518f9-eb33-4254-aa76-a6552d3cedc9}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 5b, ! Name + {90d7a4ae-1f56-457d-95f2-442e404a6543}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {8d7490dd-b2ea-421c-8534-93b3aad23bd9}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {168f3bc4-5c52-4da9-b05c-03145da6c1c6}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 6a, ! Name + {ccdf2358-ed8b-469f-a1c7-e5bc4e3a18d5}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {7e92fb7d-7bd5-4a94-989d-3d9605ee925b}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {4e060302-cef7-4ff2-b3a2-81eeb49872a4}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 6b, ! Name + {e723f255-567a-4ef1-9b27-c3b9ec494d1f}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {260dfcc8-83c0-4f5a-958d-c86fdd1d2a53}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {695cd322-1ca8-4080-90aa-8a54c6dc8655}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 7, ! Name + {ea9c9548-7da8-426c-897d-37bf3e7385f7}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {d1561fe6-9c80-4652-907c-f967c00a8c8d}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {91f7fb90-098f-4291-9617-60d5557186e7}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 8, ! Name + {de92eb61-ff45-44e4-a2f4-f93b764afe48}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {3d3a5ac2-7504-478f-b597-66c9816a7a97}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {f4980f58-5f50-4aa1-8853-f6d245107181}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 1, ! Name + {492a4de4-e575-48ac-ade9-0cf4005adc5f}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {d37b5d62-6f0d-4c6b-95d6-8b13b63732fe}; ! Layer 2 + +OS:Construction, + {a21fb0a0-7d80-4ca5-bacf-c0253a6b4267}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 2a, ! Name + {2327d734-1e67-4652-9cce-4100797c23a8}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {e565690a-2b79-45d8-a9fb-f4b7253ac35c}; ! Layer 2 + +OS:Construction, + {447ba9a8-9980-487f-9367-025bce148d55}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 2b, ! Name + {6ef700fa-93c6-4511-8495-83e68d0f86f0}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {5a58670b-6bb1-47cb-8f75-a6fc524bcfcd}; ! Layer 2 + +OS:Construction, + {b2ced33d-8697-4e42-8863-48ffa456eb89}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3a, ! Name + {f51635cd-cf60-43e9-ad78-127eb55a6663}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {31d99a9d-b507-4dd2-afb5-f14c50c1a4e7}; ! Layer 2 + +OS:Construction, + {01f79a15-bb2d-476f-8c83-1e1f471cdda1}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAS, ! Name + {a91a7741-2c0a-4139-970c-e7db29d23e39}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {30c49646-b142-424e-bdf9-4847e11981c8}; ! Layer 2 + +OS:Construction, + {61bc0202-22fc-4f89-8fa1-4e984a7430ad}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAX, ! Name + {623de263-c332-40bf-8821-350312e21d44}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {8c500a1c-ebaa-4936-b9c8-b35ca266df1a}; ! Layer 2 + +OS:Construction, + {83558379-a98d-44d2-8c99-8579e3840e1c}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3c, ! Name + {2f15df8d-e087-423f-8f11-2a517ce5f91f}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {377ea17b-1b3e-40e1-a032-5869f41470d7}; ! Layer 2 + +OS:Construction, + {889ce61b-6005-47aa-8433-821eead0c54c}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 4a, ! Name + {286a205e-4076-41aa-9f76-c437f5698221}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {35804027-50dc-4b81-bdb7-41dd81747140}; ! Layer 2 + +OS:Construction, + {3533dffd-2768-4db1-991c-918e77fd8306}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 4b, ! Name + {d85db1e1-8776-4660-896c-3889854d5f63}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {668ad162-42e4-413c-8f03-8d6503bcf245}; ! Layer 2 + +OS:Construction, + {2bc83eed-60f9-4d39-b8d9-c4a4f984fb6f}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 4c, ! Name + {3a1cd9d6-47bd-4e7d-88c8-f12fc568049f}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {a191c6ee-210c-4493-abe7-862988743a1c}; ! Layer 2 + +OS:Construction, + {c74dd07d-4d3b-4ad1-bd16-7aee4834b684}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 5a, ! Name + {a227e192-0dd6-43b6-914f-3bcb9ead8e1b}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {625e7420-3c4d-435c-b577-b2353eddaf2b}; ! Layer 2 + +OS:Construction, + {088a1489-6b18-45d2-9667-c70006b181d0}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 5b, ! Name + {312924a5-6bc0-4977-9ba5-793ff348086a}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {625e7420-3c4d-435c-b577-b2353eddaf2b}; ! Layer 2 + +OS:Construction, + {689b46bd-3ac6-40d8-bc0e-5afdfa429677}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 6a, ! Name + {c294e7a9-7319-4460-95a5-efc70265dca1}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {85c38964-7e59-4ea0-9adb-34f86b553691}; ! Layer 2 + +OS:Construction, + {7d8f711b-99f9-4331-a254-b5cabe5d975f}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 6b, ! Name + {088dfb31-b9b3-4beb-a55e-3e229b9e2f47}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {f96415b5-333d-4546-8f16-551de3d9d7c5}; ! Layer 2 + +OS:Construction, + {fb80be5b-83d7-492c-a5f3-6f77ba442887}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 7, ! Name + {25127e3f-fb36-492a-b0fe-bfea9a34affa}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {5247aa24-ee4a-4a26-af3c-2599ac4b156a}; ! Layer 2 + +OS:Construction, + {cda8999b-60e0-45b8-9461-79c7bd58110e}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 8, ! Name + {b185668d-675a-4e4d-8f3a-b319993e8168}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {e2d23c0b-fdc5-4431-8ec6-81e16606e41b}; ! Layer 2 + +OS:Construction, + {128eed89-ac7f-4ea9-8655-951d978393e3}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 1, ! Name + {a77f891d-c3b6-48db-a433-d02266201ea8}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {5e3ad40e-caa7-4b9a-93a2-943d6958eae1}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 2a, ! Name + {8fd52a38-0313-4364-9fd6-83cd6842396f}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {c8cff21b-3056-48b8-acdf-306713dbb3e6}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {0d3b2d09-4cab-42bf-b0e7-adb64958ca41}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 2b, ! Name + {f823ba96-165f-4004-b24c-5f2aeca04592}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {b571e075-2e93-4678-bd9a-bfd582892ee1}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {b519d9e4-e4d5-4834-8a4f-bb2e71b55024}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3a, ! Name + {f45a0471-ad9c-45f4-a3ce-5ffdb58599a0}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {87c45b13-cb93-41e8-b901-54e0e37d9881}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {620c5cfe-3738-4e82-ba66-61a367090aa9}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAS, ! Name + {fdc38ffe-1b31-4547-87d0-b085a85adc9d}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {76f4967a-9e69-4863-9e62-da33308b11d8}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAX, ! Name + {46963e37-2a4a-4835-a943-75676cdb00e8}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {87c45b13-cb93-41e8-b901-54e0e37d9881}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {1f0f76a1-c10c-4cfe-8952-4a96ea14becd}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3c, ! Name + {97934706-5055-4e12-80ac-2feb65c370a9}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {bb4a404a-0045-487d-ad9f-841a197cb1ad}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 4a, ! Name + {b1cb7df4-4ae2-4272-bf42-4ab46331fedd}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {c7e608d4-f8ed-44ff-a6a8-4bad9d84d75d}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {d18fa442-eaf0-4b65-b331-b973de368255}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 4b, ! Name + {8c0507c6-8b4d-446d-a39e-c16e2275750f}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {870446bd-828d-40cd-ad0e-52d13acd500f}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {867bb075-900c-4906-b02c-aae6fed93495}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 4c-5a, ! Name + {c1218ae6-7af3-406b-b274-6c54a2d4b239}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {b9b5dafb-34a2-4832-8f15-0e9b1a6ef48d}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {8094e395-b30c-4371-a6fd-ad1c68a3cd7d}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 5b, ! Name + {99bec082-f288-4a60-97fd-2e830b9ed320}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {a81edab3-3b35-48ed-9220-a80685aa3555}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {4f741dee-bf03-4507-b526-c4c2cf4f1438}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 6a, ! Name + {afa94f17-bb4d-408f-b89e-731e4dece400}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {e7e84922-5a9e-48a5-a9e5-afd9baa53d1d}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {114c30f7-36f4-4b8b-b7bf-07c684e1fd04}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 6b, ! Name + {067e7bc5-142d-4b8a-8dd8-c007c2801848}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {1a649724-b88f-49ac-8cff-30bb11629143}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {59c4a6b7-0b1e-46ff-b4fb-985286abb5ed}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 7, ! Name + {e5e2c780-290a-465f-abf7-2a13e3b97d04}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {5c087e08-0436-490a-b337-e1012a55954e}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {a4ac64f8-93da-4e7c-83aa-78616214efc5}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 8, ! Name + {38a8dc45-91cf-4c01-9a24-c255ccf39886}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {d6e8838b-7907-47eb-a3c1-8927c163415c}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {342ad891-bb6d-4673-baa2-efd94d3f0b74}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 1, ! Name + {88c0de18-4d66-468e-b76c-b0982b6322e1}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 2 + +OS:Construction, + {6bd943a2-4f28-4f1a-adc8-c2334b92591c}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 2a, ! Name + {ba4c4a2e-850a-4887-87ea-61eebfc86e5f}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {d6141305-51b8-4323-b5a2-535ee8c3bb8b}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {316801d3-06ac-4051-bf85-8505c7cea02e}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 2b, ! Name + {a10e56d2-1d33-49b0-b95d-7e3bcc8f45f4}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {70477a34-7eba-45eb-a4de-cf012d9d7b22}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {6df2548e-2560-465f-80df-54221a9f4518}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3a, ! Name + {8b3342dd-28db-4061-ada2-8cae10565ee1}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {7b77ac30-6a89-4e1d-b9da-9ae43d2c2fba}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {2017f1c3-ef39-45d8-8b99-aaa99fb323c8}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAS, ! Name + {58051a46-57b3-48bb-b526-f921db856fed}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {85f8f973-3c89-4211-af04-33d272908153}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {86288741-bd63-4894-b3ba-9084acfab11d}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAX, ! Name + {d88fcdd3-0f59-44d6-b2fa-00046d5a8d38}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {4ba4ab3b-5a4e-46b0-bbe9-babcc81b1f1f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {932194b6-37e1-4fbe-994c-474f9a0c3cd4}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3c, ! Name + {e0ba6565-e50d-43a0-96b6-78c5cf23d5db}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {7b77ac30-6a89-4e1d-b9da-9ae43d2c2fba}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {73b32bb8-9cc0-4239-9230-12d432ea85b6}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 4a, ! Name + {8b2f1991-e0d7-44d0-8dec-3570597f4e7c}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {1b906aff-1e98-471c-803d-42114d0a793f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {a2fc9852-76f4-4764-a297-ecdef3e2db5b}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 4b, ! Name + {fbd1ee56-14e5-4485-b677-c7d2d247989b}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {30256185-eaf7-4da2-a000-f392993319eb}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {626629be-4b22-4be9-b505-d9d7a4a8369d}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 4c, ! Name + {b5678963-69cc-41b8-8ee1-0290260b71d8}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {1d71daf6-04e0-4bb4-8cc9-5d2ecd6c19f0}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {8e5a1a2c-9ed8-4720-8336-4b1506394ba7}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 5, ! Name + {93a7b80d-a84f-475c-bd16-cd2d8d258211}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {9fd0362a-6a04-4b8c-ac16-52e57ea164b3}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {cdc1d585-c24d-4897-acf5-7cdff33ca909}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 6a, ! Name + {62472710-0dde-454e-aca3-684fe5de042e}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {1de98b0b-94f6-4f17-9790-8d7b296f374b}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {2597c016-9132-4cbf-a686-4d1f0b0e2c95}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 6b, ! Name + {f5cbbd78-f617-452c-aa96-fb510b947923}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {df03566f-4b4b-4bd3-a213-43d0a2f7bd6f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {0799f471-97ce-4dd0-adf4-622876330f3b}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 7, ! Name + {ac666658-8748-4834-adee-570ae7ed5105}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {f3bdb7b6-e1f4-47fa-ac02-68c81b45d2ca}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {2fe427fb-7554-41ec-b2bb-924544139eed}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 8, ! Name + {9e3dd5c1-aedd-4915-9fa3-55c120cc434d}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {54da9b7c-0304-45b8-a392-2f28e6f465a8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {dace5542-a17c-412c-b697-3374df49a0df}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 1, ! Name + {8e9a9799-f57a-48a4-85aa-e9c309ab87ba}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 2 + +OS:Construction, + {af7bf8b3-d3bb-4b1b-9ba2-f5ffa268db9e}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2a, ! Name + {63565275-942b-4ec9-88a3-980195ad26d2}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {70726037-5c93-4967-b634-86c62e81d254}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {9e8f9fac-d534-4c1b-b050-9db05dea59d5}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2b, ! Name + {50e0831a-201e-4970-889a-0d998a4d27be}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {a06f6b6d-25f3-4313-a5ca-d10b08cd01b6}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {0e5b876b-aa12-4cc6-aa7c-9e02a44737ab}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3a, ! Name + {041838ef-065b-4663-910d-a86a92242195}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {bc22faab-96f1-4058-b0d6-e90a93cff29a}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {6e66a394-02f3-4fbb-90ef-58e24657b9ae}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAS, ! Name + {60552f73-b51b-48f4-a124-f079b22ad5bc}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {0a6a8da6-2d64-4c90-99e7-e397f0e06bc4}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {fc5dd395-b69f-480d-a737-12e4d7e6f702}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAX, ! Name + {51793fc4-e175-4962-9516-b1752517722e}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {ddb0f918-b63e-43c7-9573-49db8064b3e5}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {cf2acecb-928f-43e5-85d5-1f6b5cfeae6c}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3c, ! Name + {19d94ea4-9fc8-435a-9338-dc78a5fe51a1}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {bc22faab-96f1-4058-b0d6-e90a93cff29a}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {c23573ef-8b97-4653-bff2-b41676a03cc5}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4a, ! Name + {a2959771-40ee-4c7a-8dcc-5e469376f24e}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {62e3c160-9c4e-499b-82df-50ce9069db82}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ccb790d1-f359-4aeb-a95e-fdabe6dd24b9}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4b, ! Name + {663860ba-bb01-4a1a-a121-ac18a856fc03}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {f90e6959-0fe3-433f-80ca-8908a6b996b6}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {d94ec03c-0bd9-408b-ad79-ea087ec77297}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4c, ! Name + {e3a90d46-a04d-45cd-8869-d2788354ed13}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {9bf46ef8-7a8d-4d73-b6e9-28b7f87c966f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {3b6b7c23-b714-4fba-9c17-ed00ba57acf0}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 5, ! Name + {5b4f2711-1f94-4967-8870-af44a15a6a47}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {73dcf23c-a2ac-416b-8240-d503ff433bdf}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {f22f386c-97cf-4198-8cd1-1a507b3f019d}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6a, ! Name + {3c24f67c-11ea-4f12-af43-bcf6634ca09d}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {a1cc5eca-97c4-4b06-82ee-53b15cd315d0}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {539499a7-a540-434e-a4fd-3b78229d6483}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6b, ! Name + {9c8c8844-769d-4530-a128-cb5c566c5eb5}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {7afb4b8c-56e4-4f2d-bbf1-f15ae619a45e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {f2b14196-7496-41fb-93be-e84398184ab1}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 7, ! Name + {2b5a1981-e79b-474d-be36-9f565f91ff5c}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {8ef4bdaf-b756-4204-9341-3fd6518751f6}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {b427a890-b923-4a3a-8e8a-db080692b071}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 8, ! Name + {fd610a61-d0f4-48e1-8a54-d512bb7ced2b}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {a866faf2-2c39-4700-9fee-12c3855558b1}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {beca645f-f1e0-4112-b23b-2e5b77a0f460}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 1, ! Name + {ec1d367a-f313-4c3f-a02d-1787cabe194f}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 2 + +OS:Construction, + {f821f531-08b8-4e96-90a3-1917e407e489}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2a, ! Name + {a8ded15b-90fc-4cfb-aaf8-94565ed3c1f3}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {bbaf4d38-ce87-4a92-83ad-ee7436312e5d}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {3a741736-e93f-4bfc-ba4b-05c72cb11514}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2b, ! Name + {4803aae2-cd91-42eb-8ca9-310d638251dd}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {86eec0d5-e0d5-4657-86de-b0b705b50ef8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {7745a2e9-4acf-4905-bc6b-b6be434995f8}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3a, ! Name + {8e1a65e9-23fe-43b2-86e3-9d5e21d76019}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {3ca633fa-2e8d-4d7d-a47f-e106006d7990}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {c3a74eab-f97c-4ff9-a5fa-8e0c1f6c9f9f}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAS, ! Name + {faa05fc0-ccf3-4a57-b000-696448aaea88}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {1d0cda6a-1450-495b-bb01-1a3737a774a8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ab08b284-648c-4ead-929f-eccd2231bcbc}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAX, ! Name + {9ed7a618-9d28-4553-afd0-18888b8b0397}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {193edcb6-bfa0-4540-b193-e52c425ec189}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {5e1645b7-f17b-469d-abc1-fc705b9ba8cc}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3c, ! Name + {8b61a631-439f-4ebe-9c66-43bd0c83786d}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {3ca633fa-2e8d-4d7d-a47f-e106006d7990}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {f7fc0e52-c331-493e-b182-b23d4bc4b161}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4a, ! Name + {304bbdc5-2bb3-4fe2-9b5f-3191a15fca14}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {3ae6885a-f3c0-45a9-afad-82e1b9ba4d6e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {a7f59f69-fd96-4133-b004-c800947bd142}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4b, ! Name + {19a6138d-c045-45e4-b052-0850f9eef2ff}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {8d0c591c-f3fe-4a36-85fd-6794ba88aed7}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {748d2fa4-2f26-4353-b8cc-fd3b2f66abe6}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4c, ! Name + {3e84c380-0ec9-4edc-94e6-6f3d936d7ed9}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {1e0b94d9-67b7-4df7-b66b-1b5269485dd7}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {f96f1300-ccf4-4014-9b61-822d3a25813a}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 5, ! Name + {e47c0c57-0813-49da-bce9-37f96f5070c5}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {63ba25d9-1e37-4342-94d9-f46a865f347f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ad1b4341-8da1-4ea7-b2b0-7f2e01f36a54}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6a, ! Name + {03a77cda-01a3-424a-bdf2-6d56b1f47371}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {b830e255-c086-4cb0-8edd-cb7cdddfdaf8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {1ec62bb4-c924-4796-a734-a1cf9c137b39}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6b, ! Name + {6164f3f5-0277-4615-bfa3-05e357161ad8}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {bac9b3cc-98cb-4171-b025-b798df850e24}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {c9f8880f-f5cc-4c8d-890a-29b38fa8f85e}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 7, ! Name + {8dca0820-e1bc-4978-998a-10884e1ea615}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {70642f3c-f5d0-4b6e-b7eb-539337c61b10}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {b487c56d-ca90-4dcb-bea2-35a5ad871afa}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 8, ! Name + {16b6ea15-2cef-4b52-b5af-91bb90428e20}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {d702b8e9-b1ae-4af7-9e80-0a19eeeb317f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {a4bcfecc-aa0e-47e1-b565-862ca5a40783}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 1-2, ! Name + {2ef32c95-309e-4816-8344-b4e7e72f6ddf}, ! Surface Rendering Name + {792bbea6-984c-4239-a3a1-502aeb832ac7}; ! Layer 1 + +OS:Construction, + {601d9a50-d571-467f-b571-5b7dca4d71bf}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3a, ! Name + {150dd112-56e6-47fe-8cad-a893fcef9107}, ! Surface Rendering Name + {1c2a0b13-5f9c-4d24-a833-7f17cf3fa9b8}; ! Layer 1 + +OS:Construction, + {1a3406b4-d5d8-4392-8943-c87e30018a87}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3b LAS, ! Name + {6dbced9e-5424-4033-9661-1714c27171ee}, ! Surface Rendering Name + {792bbea6-984c-4239-a3a1-502aeb832ac7}; ! Layer 1 + +OS:Construction, + {fe5d3e8b-a3d4-4e0f-aca5-8af043c965e8}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3b LAX, ! Name + {8bf35726-d751-47f8-b634-e25a7ef1d19b}, ! Surface Rendering Name + {05610e04-f6ad-4d03-9915-9ef06204b77b}; ! Layer 1 + +OS:Construction, + {350c2a89-42cb-47dd-bc5e-8cfa6361891b}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3c, ! Name + {cc58d3aa-0efb-40cd-84bb-63431a1a7648}, ! Surface Rendering Name + {2e7e90d4-05f5-4dc0-b6a7-d3ebb3a6e955}; ! Layer 1 + +OS:Construction, + {a68856ac-4914-4361-9c29-34cc2e916be3}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 4a, ! Name + {a1fd572d-ecc8-49f2-97d1-216ee9242091}, ! Surface Rendering Name + {b2b12a2f-6927-4174-a902-2b9f4335e392}; ! Layer 1 + +OS:Construction, + {34c491b9-29e3-44f9-af74-7ca3425baa6d}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 4b, ! Name + {acc8d852-042b-4336-9e90-7ddeb40023ab}, ! Surface Rendering Name + {6cd6c08c-958d-474f-89d6-2e912faaed3b}; ! Layer 1 + +OS:Construction, + {db21706d-f6c9-4906-bfca-0b08de0c2a0e}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 4c, ! Name + {51e1b71e-4630-44b8-a903-9102b249bc0c}, ! Surface Rendering Name + {2e7e90d4-05f5-4dc0-b6a7-d3ebb3a6e955}; ! Layer 1 + +OS:Construction, + {d04bfd29-0b63-4d88-b0c7-97e2e9fe8593}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 5, ! Name + {f02e4868-6845-4619-9ba3-d5da736a7a73}, ! Surface Rendering Name + {3d29d6fa-2364-448b-9043-caf2dc3a1986}; ! Layer 1 + +OS:Construction, + {1d2057aa-367d-414a-ac89-6628e2bcba9b}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 6, ! Name + {9f646273-1ce4-4cb6-b9f7-bfe2972b569d}, ! Surface Rendering Name + {9ba65076-61e9-4056-b655-3979ff36305c}; ! Layer 1 + +OS:Construction, + {160f0a7c-ff95-4a35-b1c2-ffb6f0f0eacb}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 7, ! Name + {158646e6-47ef-4969-b255-03d44106b666}, ! Surface Rendering Name + {871fe623-8418-4785-bf65-b6c3e9bdfc1d}; ! Layer 1 + +OS:Construction, + {18d22441-d49c-4e9f-99a9-c47766ecda5f}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 8, ! Name + {95429580-e4e8-45ed-ba08-c3dbb35a0fa1}, ! Surface Rendering Name + {d5165f0e-1b13-471a-a041-2662ffed0297}; ! Layer 1 + +OS:Construction, + {02849ebe-17f6-422a-b1a2-ef2d5a2511d7}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone alt-lrgoff hosp 1-8, ! Name + {faf763cc-89f2-42a7-89af-050976efebb3}, ! Surface Rendering Name + {792bbea6-984c-4239-a3a1-502aeb832ac7}; ! Layer 1 + +OS:Construction, + {d11a9311-c90f-447d-9e9c-e7cc780930d4}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 1-3, ! Name + {acd816cb-8fd7-483d-beb8-9c0162b90509}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {c20942b9-37de-435d-86ad-c3fc584ce8e0}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {7f8e9ec5-9ad8-4313-9fe4-60b5255ad1f2}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4a, ! Name + {923055e5-5cc0-45ff-b398-f1d087c3316a}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {8b86b4b2-e6c5-4ff6-84dd-c3a51748e996}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {82e5e3d0-c8fd-4fbb-9d03-c1c446e2ddef}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4b, ! Name + {adef2ba0-7ea6-408a-a393-11dd9183e599}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {140ca8f8-47f4-49f5-b334-453151c3836f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {651ba122-dd3c-4be1-8f9d-a0914921a22c}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4c, ! Name + {4422f757-0b74-4c2f-b083-0582814bfd02}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {d9215034-34f1-449d-a4c8-1435b4a3cd08}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {5de4bb7e-db8b-4dc6-acb4-9035fdf06e8d}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5a, ! Name + {7a8de390-c796-401c-bb0f-5c6531888e5f}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {196873b2-fe90-46f8-b8b4-2b5fd9f1d2ce}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {d81c668b-06eb-4a72-a25a-60c1b5d885cb}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5b, ! Name + {e5cbb53b-4ae1-4f81-8d4f-1f77c599a406}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {38c2d62f-b193-4c3e-902e-fe3190e77900}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ce2e906f-2eab-446b-800e-cf89be954243}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 6, ! Name + {497f403b-e575-4d24-9432-7078b4b19c22}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {77b26504-2009-4b81-bdad-8f821d1a00f9}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {f896d0fa-3448-4299-a37a-1f0e0e6f36b6}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 7, ! Name + {4896d242-e6af-465d-88be-c1539325d2fd}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {60a25b0b-4187-43c5-8e39-81a368f55a0c}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {935c4879-1e8c-4359-9199-a385079b50be}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 8, ! Name + {7d97d0dc-29b9-4be5-ba0e-b5fea16ae416}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {77b26504-2009-4b81-bdad-8f821d1a00f9}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {c10eb4c4-c6e7-4f7b-bca7-5bc77f986646}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 1-3, ! Name + {44733fca-03ab-4774-9588-eb7366554d0f}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {aed17da6-63d5-4b8f-8f07-4b30d5fb9ae2}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {8985ddac-3fd4-4ddd-af5f-92dfe8b9dcd9}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 4a, ! Name + {8e6540ea-dd12-4d1e-afc4-543e5a741004}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {b8b2c44a-a897-40b4-9274-2aae442cfed6}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {667121f9-e7cb-49a4-8471-3f862aa1cfce}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 4b, ! Name + {f52cfe05-223e-482b-8a03-28e9a086485e}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {140ca8f8-47f4-49f5-b334-453151c3836f}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {810abe11-a5cb-430a-9653-ad13f46223de}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 4c, ! Name + {ea53efab-4239-4bd9-9bde-a9122aa104ba}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {d9215034-34f1-449d-a4c8-1435b4a3cd08}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {8d18479b-8637-4d7c-a6f6-e38423de82b6}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 5a, ! Name + {adbc43e2-1255-423d-b85e-0ed4d1d7893d}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {196873b2-fe90-46f8-b8b4-2b5fd9f1d2ce}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {41b9d48b-f5ce-498f-9a19-af98986e5fbb}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 5b, ! Name + {d21f9553-53d1-4ec0-b085-53a9452c291e}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {224e456d-deb7-4af4-8334-8e1d4eeeb844}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {51efc6cc-a4bc-4cd9-90dc-81a6f767d96b}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 6, ! Name + {205baf08-8d9f-4a61-a98a-a8a2b8b978bc}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {b6fd9dc9-1b4b-4590-b2d9-d6731170144a}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {0714ed05-88eb-44a7-9990-aa7e4a7121ee}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 7, ! Name + {dcd46811-074b-44a3-bfef-4ea1e64d2c7c}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {745f0704-7782-46c2-9d3d-cfbc967022c0}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {c3e94101-a60b-4648-bbe9-64c63fbfdca2}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 8, ! Name + {adf70ac3-816a-4aed-aad2-c04c4c9ab083}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {b6fd9dc9-1b4b-4590-b2d9-d6731170144a}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {4c826034-477a-43e5-9400-9f2feeb5730a}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 1-2, ! Name + {77b88734-e69e-46cc-9ee1-b175cda6e336}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {18c8ccdb-c036-4b38-b49d-ba89546c7ce2}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {d2e520b8-a260-4fb0-8394-84440fcf18ed}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 3a, ! Name + {f28e6547-4a70-4e4b-ba56-a7fa5b5a8407}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {122b289c-ffc2-4892-8c42-c1207975f9df}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {9b3b9b4e-e99f-4c66-a420-9e8547b962c7}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 3b, ! Name + {e2e4165f-df62-4bb4-96ff-b7b46530eda1}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {18c8ccdb-c036-4b38-b49d-ba89546c7ce2}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {7644694b-8707-4d2f-b06c-c33f301eda85}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 3c, ! Name + {93c014a1-e313-4432-827d-ca814f3d5494}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {ad2246a1-090f-45a5-ada5-fc4aaa85e7f0}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {5cce306f-af6e-405d-9b29-de1784e4e760}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 4a, ! Name + {0b877208-9b7b-4262-b75c-d547a149e555}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {90b3d310-a43b-4aff-a560-91aa0c591f35}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {96b72eed-df9d-463c-a195-85e145da16be}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 4b, ! Name + {1b520467-7699-4e24-a682-88847cd5f95a}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {ce7df23e-efb6-4adc-adc5-fc28ec3aa28b}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {08188727-8d69-48c9-85a4-96e9c69ea9af}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 4c, ! Name + {29e5d2df-d9d2-4e37-8a4c-6f49dbcf7796}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {d6851d22-d23b-4af1-83e4-dcfe591e050c}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {3f08a677-182a-4bd7-bcdd-ded5d747da38}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 5a, ! Name + {63fd6dbc-e3b3-4d3b-9057-3806faa3e261}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {84acd8fd-16ef-44a7-ab4b-9c7f4efcd522}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {24f23c98-d4a5-40b0-86c8-20ab1c9924f9}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 5b, ! Name + {7065de87-b88f-4703-8d36-eb633741532a}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {d75c35b5-7b9a-4c1b-b622-7e8d7ada0320}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {0881aa27-a4c5-4c95-8ff4-0df2c509d7b1}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 6, ! Name + {ccf9a487-1499-427c-9c58-c03ea13520f5}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {4cea3a88-b653-4148-9530-4df3dfbd8d12}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {8fb41d8a-8838-471c-a52c-9f176a1103b7}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 7, ! Name + {dfd364e1-e3ad-4419-8436-46b4dbc30a80}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {20f20667-e117-4257-baf6-ecab87e87e34}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {a558d14b-7f10-4fe3-8174-643279c41ca4}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 8, ! Name + {6cc160fc-eda5-454a-9fc8-248d3602877c}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {295e2bfe-fe69-4545-83e9-c4f9521ee9af}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {c13975ae-0268-443d-bba6-7b8758b53f28}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 1-2, ! Name + {cdf43e8c-2707-4023-a505-a103b5c1122e}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {48426b5b-8855-49b8-bc32-91a25f31da9e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {410d1545-1016-4d81-a278-272353e93857}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 3a, ! Name + {abf65fac-a143-4906-8870-b68e2b29853c}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {71b3c0a8-0c7d-45dd-b33b-5bc1ce676b91}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {df28b534-00e1-4d02-8181-19d21ec39224}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 3b, ! Name + {59430b4e-363e-4bae-96d8-a738d6abddda}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {48426b5b-8855-49b8-bc32-91a25f31da9e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {794c10bb-ddc1-4e32-8600-90851c2f575c}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 3c, ! Name + {0cbff5e1-c8b0-4b2a-992b-628dec59481d}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {71b3c0a8-0c7d-45dd-b33b-5bc1ce676b91}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {7373bce1-e9eb-418a-8386-2aa0ffec7231}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 4a, ! Name + {844fd75e-e0b0-46ae-8ced-5335fc28af5d}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {6fd59db3-0b7b-43cf-954e-74663858468e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {109605dd-9308-4855-b2c2-ddd4c1e76811}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 4b, ! Name + {d7634987-5fd8-4a42-9823-18432cbb72dc}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {83bbe90d-602f-4224-9893-83136b51bf4d}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {6716b909-4567-40d4-b858-5a4e8c5ef2c1}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 4c, ! Name + {01a70f65-484e-4f80-b73d-f9b756234486}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {98d65f2b-d4ce-406c-929a-738279b6e635}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {f6be2b62-1d36-4acd-8b82-b4055bd34446}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 5a, ! Name + {82bf2d2f-f378-41a4-b223-2130a1114b27}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {f2383d9e-2816-4bc0-8f83-e6d6b94d4b0a}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {cce8b023-a385-427d-9607-663f502f1437}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 5b, ! Name + {1b992bb3-58f2-49ec-8b9d-d2d510a12242}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {f82bb960-61d1-4a6f-a562-557a26f190e6}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {6e80f38c-18de-44a4-889f-85b9bc07628d}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 6, ! Name + {93b3a8b8-1ed4-4327-b943-bf3b52676060}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {21cf61df-a7d6-458c-a896-50cd1bc3895e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {30c69ccb-5102-4b0a-8709-8b5c78acad43}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 7, ! Name + {c97c10eb-f21e-4e62-9967-72b4ef407d86}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {d66ed090-4246-4a1c-9810-c2b53be4315b}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {aaecadeb-2717-43af-9512-212a3fbcce6b}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 8, ! Name + {fdcfe45e-c6ba-43b1-8a9f-690c6f3e3825}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {e1891fbc-6eb3-4f15-86cf-bea124d394cf}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {a6174430-a1cd-477a-9134-5dd61f9260bf}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 1-3b, ! Name + {94bf8dd4-d14d-4dce-ac68-d72e4411e103}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {9648adf1-1cfd-4959-b2b0-1fe96c98328a}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {bf89d7e8-db22-449a-88e0-ff884fd061dc}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 3c, ! Name + {55c209df-3b26-42d7-a30e-7421b4a7f912}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {5b1e7cea-54b9-4059-b6ed-dc61cb4f8c88}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {1f68eb3f-ed23-4dff-a91d-de23381d46ce}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 4a, ! Name + {05353120-3742-43bb-b04c-a08dbcf670b8}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {9731b4f8-7399-4f7d-9511-20a11c381c0a}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {d0d22f5e-83e3-4f3a-8de2-8e7267bbeaf1}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 4b, ! Name + {cdc7c4ba-a5c5-4fd3-b783-cf84a130443d}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {341d0543-d09b-4c63-b74e-73e67d7ef5be}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {89eb8c35-e705-4571-82fe-0ff8a0538e47}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 4c, ! Name + {5482f903-095c-420e-bdc1-5cf22a47d7f7}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {8ab1d287-c9aa-42f4-85d2-640bd9f31ba7}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ad18d4fd-71ea-4f9d-ae08-612366035c0e}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 5a, ! Name + {b04bf47c-c5de-4f59-a18a-f063cfe28957}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {3590b762-0a6f-486b-87ec-7fc4ad566046}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {d6157b0f-6062-4a60-bc7b-6d3e5c720f26}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 5b, ! Name + {849f1f45-ac9e-44aa-a8d1-c03e31cad58f}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {85e4a19d-7001-46a7-974a-fd8668f7b051}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {e2530f8a-6f51-4a69-91a6-8ec59c79528b}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 6, ! Name + {c83c7eab-0fe4-458d-8da2-85ed2e5446ed}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {6ceb61ae-d293-448a-9d3c-b756b7b1e3a4}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {e5e01825-3931-491f-8adf-4446ddd810c9}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 7, ! Name + {c2dc01f1-5dc4-4910-8760-8a418f502eda}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {e64d2caf-b654-41a7-9307-9ae1abb96f22}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {40b8ff50-7261-439e-bd7b-5085147aa3d1}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 8, ! Name + {3833555c-94b3-4e59-8bc9-788dfe2ce1dd}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {f25d0999-b31a-46d8-9999-37c5c19b583d}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Handle + CBECS Before-1980 ExtWindow ClimateZone 1-4, ! Name + {183b6938-31e1-4693-8537-fc2fefff34d1}, ! Surface Rendering Name + {b856edfa-5cae-4207-9bc9-a2cb8c254596}; ! Layer 1 + +OS:Construction, + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Handle + CBECS Before-1980 ExtWindow ClimateZone 5-8, ! Name + {adfb8b7e-3ab3-48a4-a516-1f25ea768cdf}, ! Surface Rendering Name + {6833b0b5-6a33-4f59-89c8-600daa3befcf}; ! Layer 1 + +OS:Construction, + {c34bf3ec-dadb-457b-85aa-13c3b5a72ef8}, ! Handle + CBECS Before-1980 ExtWindow ClimateZone alt-lrgoff hosp 1-8, ! Name + {50875956-913e-4b66-bfa9-feb83313be9a}, ! Surface Rendering Name + {b856edfa-5cae-4207-9bc9-a2cb8c254596}; ! Layer 1 + +OS:DefaultConstructionSet, + {e048c64e-9eba-4c8c-a734-65ad64f4dd56}, ! Handle + 000 Default Constructions ConstSet, ! Name + {6d3a4026-1e88-4e75-a198-01ae36f80f87}, ! Default Exterior Surface Constructions Name + {5750823c-bae4-4180-9363-5e4bff9040b0}, ! Default Interior Surface Constructions Name + {234b33fe-3dc4-4931-8dcd-974d5830fcc2}, ! Default Ground Contact Surface Constructions Name + {82ee05e6-2eb2-4158-be22-7dd9c13c70af}, ! Default Exterior SubSurface Constructions Name + {53c598e6-015c-4846-b54a-9168cc613369}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {dbada510-45af-4731-b2e5-7dbad79ca4c4}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1 (s scho) ConstSet, ! Name + {ea2468bf-0ac7-4a35-9de0-da6a2a188677}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {6c7bc350-d479-4ceb-9e78-241ed7c57d62}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {dbc6fb4f-b309-4501-ba9d-c5af4c4e5f0d}, ! Handle + ASHRAE 189.1-2009 ClimateZone 2 (s scho) ConstSet, ! Name + {84353bb7-e5e3-446a-ba4a-a9f66d01010c}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {0ec940d1-3ef6-487b-9885-35c35e2ac3eb}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {739aee6a-d525-4acc-b008-abd536571c16}, ! Handle + ASHRAE 189.1-2009 ClimateZone 3 (s scho) ConstSet, ! Name + {aa3fc52c-cf27-44cf-8bc2-2b7d2c09b15a}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {dce464c5-5b14-430b-8bb6-b87a124ec54d}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {f7b68a59-87e0-4de6-8047-f75fef749334}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-5 (s scho) ConstSet, ! Name + {e3335648-7af0-4e2d-9f43-7d3ab5081a13}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {6276ea6b-50c8-4c93-8fc8-e96706a99bfa}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {af5d984a-ce34-4f76-9e66-8122eedf9321}, ! Handle + ASHRAE 189.1-2009 ClimateZone 6 (s scho) ConstSet, ! Name + {d7d6e92c-4e46-4e84-b392-266fb4b72c6b}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {7a9ecd94-9ffa-4839-87aa-b5abb8399696}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {1b80f51e-a766-4bfa-a474-4c1eaab56d29}, ! Handle + ASHRAE 189.1-2009 ClimateZone 7-8 (s scho) ConstSet, ! Name + {6dcc2dd8-eebe-4d2c-8b85-3d638ca0df45}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {5359de57-4f12-41a2-b0d3-396fc6916aef}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {6b8d500f-c0a7-4a77-bf00-34dbfcc42303}, ! Handle + ASHRAE 90.1-2004 ClimateZone 1-2 (s scho) ConstSet, ! Name + {6db01b71-537a-45bc-904e-4c6332fab6aa}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {433bb2cb-135a-4800-b740-22ac09affc9c}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {ece2faf1-4bbc-44b7-a344-d5f0c2e93df5}, ! Handle + ASHRAE 90.1-2004 ClimateZone 3a-3b (s scho) ConstSet, ! Name + {2210df53-ea8f-44ce-82d5-ccc60f386113}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {d950d87b-a5c0-47be-a4c4-2c23e315512d}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {4a4b0044-4565-45f8-90d7-b68f49a823ef}, ! Handle + ASHRAE 90.1-2004 ClimateZone 3c (s scho) ConstSet, ! Name + {b0ea6546-eef6-44aa-b9b8-2effbb3f89e4}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {9fd03567-9fba-4e49-91df-a82e85e27473}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {cc4731b9-99e3-4f9c-91b4-42e8a084d22b}, ! Handle + ASHRAE 90.1-2004 ClimateZone 4 (s scho) ConstSet, ! Name + {0be66da3-497a-4f20-a39e-e80b6b447a74}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {d31b7460-8968-44b2-bf81-631bafc061e1}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {077ce30a-72cf-472e-ba88-ce83644666b3}, ! Handle + ASHRAE 90.1-2004 ClimateZone 5-6 (s scho) ConstSet, ! Name + {34fb2098-cdaa-41fd-9388-9f95e8ae7212}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {24b94ef9-5d22-45d9-a906-2d52b1a551de}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {3aacb568-67f5-47b2-a12b-7615f79105d9}, ! Handle + ASHRAE 90.1-2004 ClimateZone 7 (s scho) ConstSet, ! Name + {77b56a4a-6765-4178-b26e-45c78e03585b}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {55189a53-2795-4ebd-a40d-c9ced1acf747}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {c8e40d77-b828-4bdd-9205-e310fa8f7162}, ! Handle + ASHRAE 90.1-2004 ClimateZone 8 (s scho) ConstSet, ! Name + {5ce01e3e-b57d-4c02-a768-0acccf8bd443}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {e1f6cbe4-36d4-4b5c-8d7e-60443138ac3d}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {dee4b72b-a0f2-4cd4-8b62-6758b22f71f3}, ! Handle + CBECS 1980-2004 ClimateZone 1 (s scho) ConstSet, ! Name + {c742fa4b-317a-478e-991f-96dbeeb1892b}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {49f912c9-a12a-4dcd-8b84-88cf8648e8be}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {9a50e0b5-ba20-486b-9a44-34ae12d9902e}, ! Handle + CBECS 1980-2004 ClimateZone 2a (s scho) ConstSet, ! Name + {cfb3c7a7-634c-4fe1-bd4a-a6f6bf2ef59a}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {de73ab33-4af1-4b63-b17b-343ba13a6422}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {bf689d09-9741-47ec-8bef-bff139e118e7}, ! Handle + CBECS 1980-2004 ClimateZone 2b (s scho) ConstSet, ! Name + {ac385b3b-bbdc-43cc-bbd3-cd86b10d8635}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {01681266-95ef-45f1-adcf-627110006496}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {6d93e670-b6f3-4e2d-87f8-f41e70f1b190}, ! Handle + CBECS 1980-2004 ClimateZone 3a (s scho) ConstSet, ! Name + {c4801396-9518-425b-aac2-8f15def041dc}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {e14f2def-5a6d-436a-b761-ce36a9f3f309}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {f075018b-dca6-4f92-9308-8557854187fb}, ! Handle + CBECS 1980-2004 ClimateZone 3b LAS (s scho) ConstSet, ! Name + {fea5d7f8-2f57-4e80-ac30-5ceb2138c104}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {24f6a143-0660-4bc7-a9e5-e94c0996c7d8}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {a3395e69-e0a6-4db7-b4a2-cdf2f8cf5141}, ! Handle + CBECS 1980-2004 ClimateZone 3b LAX (s scho) ConstSet, ! Name + {c81bab38-4919-4961-a310-a20936e828f5}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {d3efd27a-7f76-4520-af49-3d6e0b8050a7}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {b8f04063-8e2a-4baa-8473-dc62b664dd39}, ! Handle + CBECS 1980-2004 ClimateZone 3c (s scho) ConstSet, ! Name + {e1fd9e94-75de-4cab-b282-7c6f058e87f1}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {2ba1f473-c27f-412e-b963-3a1072eda701}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {e4e8a633-79eb-4454-b53b-4d88fe5de3e7}, ! Handle + CBECS 1980-2004 ClimateZone 4a (s scho) ConstSet, ! Name + {6de712ef-0b2d-46a2-8f22-d836a3521769}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {4f8b6fb0-5a70-49ba-a6a8-4402407ebba7}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {3426a5fb-9bed-4031-877b-8cddbd9e0bd5}, ! Handle + CBECS 1980-2004 ClimateZone 4b (s scho) ConstSet, ! Name + {0c429083-9ee7-474f-807b-7a29b54ae63c}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {5e2387a5-6b29-4e7e-82f7-6f5a711ff152}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {9b5c3e9f-d09e-4ae9-98b9-15f19cf9624d}, ! Handle + CBECS 1980-2004 ClimateZone 4c (s scho) ConstSet, ! Name + {8cecab76-5e37-4f12-b298-49543cbf8659}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {fe96d60e-fefa-4233-a0e3-9051065720c8}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {19c79695-6d55-4b72-92b9-f09bc4e23de3}, ! Handle + CBECS 1980-2004 ClimateZone 5a (s scho) ConstSet, ! Name + {8bce6ef5-105a-4367-9c07-de93f64396b8}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {c52d9ef3-c27a-46f6-89e8-0fafeca81603}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {e0b170fd-4ffb-4a87-a299-b49c6f63963d}, ! Handle + CBECS 1980-2004 ClimateZone 5b (s scho) ConstSet, ! Name + {3e376e1c-11ee-4b45-94ce-64fc8fa0390d}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {32486897-528d-4ab3-9966-869bfb79853c}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {4a48e5d2-e273-4b9e-8149-5475b5d7b419}, ! Handle + CBECS 1980-2004 ClimateZone 6a (s scho) ConstSet, ! Name + {deee3275-7856-4b7d-a3d1-80326e9b0a96}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {d7a18b48-793b-4c53-8acb-b79b2c0893eb}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {d4efde8b-d0ba-4900-8bc2-b52e96c00e61}, ! Handle + CBECS 1980-2004 ClimateZone 6b (s scho) ConstSet, ! Name + {ce0c4479-9bd2-425a-9988-0cf69e0d520e}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {d6e23cd8-7cf8-4087-ad8d-0a2e6904d61d}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {6e27fc74-fec5-4533-8132-af0dee6de255}, ! Handle + CBECS 1980-2004 ClimateZone 7 (s scho) ConstSet, ! Name + {d6c8c1a2-f11a-4a7d-809e-6c2abe0b8b07}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {fcc19bce-0ef9-4611-80f5-e7584bf9f523}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {4192742c-bf6e-461f-943b-6ff8d7c4ec50}, ! Handle + CBECS 1980-2004 ClimateZone 8 (s scho) ConstSet, ! Name + {0fca0418-fe6b-4372-ad6d-2288041c5960}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {760db367-2e98-4758-a25a-d3f7e46c3e25}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {35dbdf81-7f9a-40f8-9d33-cea47e50fb73}, ! Handle + CBECS Before-1980 ClimateZone 1-3b (s scho) ConstSet, ! Name + {47de92ed-439e-425a-9171-c2dcf43aea0e}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {2b11a090-7ac0-4e79-a0f8-6d07a27c70f9}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {c3010cd2-dd30-4d9f-86e3-b2621b7390d1}, ! Handle + CBECS Before-1980 ClimateZone 3c (s scho) ConstSet, ! Name + {aa7db894-9f87-474b-abf1-159b4ca8243a}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {1d3b6788-5966-454a-8bb7-0a4a662920f1}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {d4f0a9ee-9faa-4a18-8dbe-f14c44ab3ae9}, ! Handle + CBECS Before-1980 ClimateZone 4a (s scho) ConstSet, ! Name + {f35594f5-b8bc-4c81-a54c-50c3e02485a5}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {49805d4e-d49c-4947-9e36-6332fcd0915d}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {d47bd7e4-9067-43bb-b019-cb721ffa168c}, ! Handle + CBECS Before-1980 ClimateZone 4b (s scho) ConstSet, ! Name + {c8214d50-64aa-4ca7-9940-a643b34ad7e0}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {eaefc321-1d82-4b40-ab3d-8b605ba3907b}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {36c7b0f2-2004-444b-8f4e-d62122cdbd6c}, ! Handle + CBECS Before-1980 ClimateZone 4c (s scho) ConstSet, ! Name + {2a69f761-2db8-4b6c-9dc3-3094f1f10b38}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {2e850914-3c5d-4ae6-abdb-232719b4fcc9}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {dc9a950b-f570-40c8-b58e-02d11d6ca97b}, ! Handle + CBECS Before-1980 ClimateZone 5a (s scho) ConstSet, ! Name + {75ef1bad-35f5-49a8-8dd0-25102fece624}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {09adf731-d421-40ff-b989-0ee8e8d52fd7}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {4d3e3a0b-d997-4572-b189-4ed22db9b3fe}, ! Handle + CBECS Before-1980 ClimateZone 5b (s scho) ConstSet, ! Name + {50a8dd6b-0e6a-4c65-b2c1-e6f262b6db4b}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {b1a33b54-b58c-4394-a7b7-6179a5e37ddc}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {ba56414b-54fb-44f2-936d-8f51a8f009a8}, ! Handle + CBECS Before-1980 ClimateZone 6 (s scho) ConstSet, ! Name + {0376b90f-1758-4ccc-bb0e-cda27e1ce38b}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {b820843a-1a42-4915-8bd1-6f94f956bce5}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {3bcff8ba-7196-43f6-8a6b-d32806308502}, ! Handle + CBECS Before-1980 ClimateZone 7 (s scho) ConstSet, ! Name + {fa06a4f2-14f1-4d17-ba4f-dcc2b791e6ce}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {4744e069-6975-4865-9db2-1aa5a033f6ae}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {a228ef8d-e73c-4ff3-b8cf-af15c386c29c}, ! Handle + CBECS Before-1980 ClimateZone 8 (s scho) ConstSet, ! Name + {d5ffa33d-e9a2-4e65-90f6-9accd16b6926}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {8cc10ecb-0874-471c-8f6e-127ec4722450}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultScheduleSet, + {fdb886e6-13d1-47ff-8dfe-ab7f6b5edc6a}, ! Handle + SecondarySchool Auditorium Schedules, ! Name + , ! Hours of Operation Schedule Name + {b80c5984-52bf-4454-828b-c483ae711bd3}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {81ebe8af-f422-4d64-bc21-6ff750749ada}, ! Handle + SecondarySchool Cafeteria Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {8245cd5b-e772-4cbb-a1d4-90f7c2577033}, ! Handle + SecondarySchool Classroom Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {47e1cd4a-7486-461a-8115-3a9600a7ada2}, ! Handle + SecondarySchool Corridor Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {daf5fed8-5b65-440a-8c6e-c9630fbaf451}, ! Handle + SecondarySchool Gym Schedules, ! Name + , ! Hours of Operation Schedule Name + , ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {c82bc009-a812-40aa-9b86-6e313beaad02}, ! Handle + SecondarySchool Kitchen Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {83168bf5-8697-4081-a040-34e22a7061ad}, ! Electric Equipment Schedule Name + {6050b866-b11c-4448-b39d-3e11bbe44c31}, ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {f94b119f-45bd-4438-ae68-fc88cf1f48a5}, ! Handle + SecondarySchool Library Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {02b7325b-b231-4f07-8525-a14958f777a0}, ! Handle + SecondarySchool Lobby Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {05762368-0d88-4ce4-a570-81a88c8a6687}, ! Handle + SecondarySchool Mechanical Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {d07cd639-c4db-4910-a050-7256b9b7adea}, ! Handle + SecondarySchool Office Schedules, ! Name + , ! Hours of Operation Schedule Name + {b65c9ad7-8b2b-4e42-8cb0-3a253a50022b}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {05669c13-8118-4394-951f-dfd9f9e0b04b}, ! Handle + SecondarySchool Restroom Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {dfc858f6-8a8e-4557-b3e2-caf2ef244c13}, ! Handle + Attic Schedules, ! Name + , ! Hours of Operation Schedule Name + , ! Number of People Schedule Name + , ! People Activity Level Schedule Name + , ! Lighting Schedule Name + , ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {d14b894d-6718-40f1-bb81-291c435485ea}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultSubSurfaceConstructions, + {82ee05e6-2eb2-4158-be22-7dd9c13c70af}, ! Handle + 000 Exterior DefSubCons, ! Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Fixed Window Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Handle + 000 Interior DefSubCons, ! Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Fixed Window Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Operable Window Construction Name + {1ccc9476-7cb0-40f8-bffb-3d7f62f32c66}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {6c7bc350-d479-4ceb-9e78-241ed7c57d62}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1 (s scho) Exterior DefSubCons, ! Name + {c8099665-7d3b-4d7b-8d85-3f1a1b6e9c57}, ! Fixed Window Construction Name + {c8099665-7d3b-4d7b-8d85-3f1a1b6e9c57}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {0ec940d1-3ef6-487b-9885-35c35e2ac3eb}, ! Handle + ASHRAE 189.1-2009 ClimateZone 2 (s scho) Exterior DefSubCons, ! Name + {425b7cb1-272c-4e02-a98f-161b07082b19}, ! Fixed Window Construction Name + {425b7cb1-272c-4e02-a98f-161b07082b19}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {dce464c5-5b14-430b-8bb6-b87a124ec54d}, ! Handle + ASHRAE 189.1-2009 ClimateZone 3 (s scho) Exterior DefSubCons, ! Name + {246363fd-0aca-4c06-9463-e96291924508}, ! Fixed Window Construction Name + {246363fd-0aca-4c06-9463-e96291924508}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {6276ea6b-50c8-4c93-8fc8-e96706a99bfa}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-5 (s scho) Exterior DefSubCons, ! Name + {cb8c7d4e-9646-4d49-ab15-492be6063a6f}, ! Fixed Window Construction Name + {cb8c7d4e-9646-4d49-ab15-492be6063a6f}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {7a9ecd94-9ffa-4839-87aa-b5abb8399696}, ! Handle + ASHRAE 189.1-2009 ClimateZone 6 (s scho) Exterior DefSubCons, ! Name + {147eb040-250b-448b-8759-b552add3f4f5}, ! Fixed Window Construction Name + {147eb040-250b-448b-8759-b552add3f4f5}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {5359de57-4f12-41a2-b0d3-396fc6916aef}, ! Handle + ASHRAE 189.1-2009 ClimateZone 7-8 (s scho) Exterior DefSubCons, ! Name + {a3f376a2-bdfc-4315-af96-7011df2f3924}, ! Fixed Window Construction Name + {a3f376a2-bdfc-4315-af96-7011df2f3924}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {433bb2cb-135a-4800-b740-22ac09affc9c}, ! Handle + ASHRAE 90.1-2004 ClimateZone 1-2 (s scho) Exterior DefSubCons, ! Name + {5d51a133-05c5-4228-ba67-3c4ba4d0bb27}, ! Fixed Window Construction Name + {5d51a133-05c5-4228-ba67-3c4ba4d0bb27}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {d950d87b-a5c0-47be-a4c4-2c23e315512d}, ! Handle + ASHRAE 90.1-2004 ClimateZone 3a-3b (s scho) Exterior DefSubCons, ! Name + {c9df6abf-d698-4097-8afa-8a4539b85d79}, ! Fixed Window Construction Name + {c9df6abf-d698-4097-8afa-8a4539b85d79}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {9fd03567-9fba-4e49-91df-a82e85e27473}, ! Handle + ASHRAE 90.1-2004 ClimateZone 3c (s scho) Exterior DefSubCons, ! Name + {12ddfc25-687a-464d-8793-d0729f049b82}, ! Fixed Window Construction Name + {12ddfc25-687a-464d-8793-d0729f049b82}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {d31b7460-8968-44b2-bf81-631bafc061e1}, ! Handle + ASHRAE 90.1-2004 ClimateZone 4 (s scho) Exterior DefSubCons, ! Name + {b46f753c-f0ce-4a6e-a6cb-0112ac1afdaa}, ! Fixed Window Construction Name + {b46f753c-f0ce-4a6e-a6cb-0112ac1afdaa}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {24b94ef9-5d22-45d9-a906-2d52b1a551de}, ! Handle + ASHRAE 90.1-2004 ClimateZone 5-6 (s scho) Exterior DefSubCons, ! Name + {b46f753c-f0ce-4a6e-a6cb-0112ac1afdaa}, ! Fixed Window Construction Name + {b46f753c-f0ce-4a6e-a6cb-0112ac1afdaa}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {55189a53-2795-4ebd-a40d-c9ced1acf747}, ! Handle + ASHRAE 90.1-2004 ClimateZone 7 (s scho) Exterior DefSubCons, ! Name + {603cae7f-41c1-4140-888a-0d6a375e14da}, ! Fixed Window Construction Name + {603cae7f-41c1-4140-888a-0d6a375e14da}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {e1f6cbe4-36d4-4b5c-8d7e-60443138ac3d}, ! Handle + ASHRAE 90.1-2004 ClimateZone 8 (s scho) Exterior DefSubCons, ! Name + {e6837572-78f1-4a8e-b3ba-2276c336b19e}, ! Fixed Window Construction Name + {e6837572-78f1-4a8e-b3ba-2276c336b19e}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {49f912c9-a12a-4dcd-8b84-88cf8648e8be}, ! Handle + CBECS 1980-2004 ClimateZone 1 (s scho) Exterior DefSubCons, ! Name + {a4bcfecc-aa0e-47e1-b565-862ca5a40783}, ! Fixed Window Construction Name + {a4bcfecc-aa0e-47e1-b565-862ca5a40783}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {de73ab33-4af1-4b63-b17b-343ba13a6422}, ! Handle + CBECS 1980-2004 ClimateZone 2a (s scho) Exterior DefSubCons, ! Name + {a4bcfecc-aa0e-47e1-b565-862ca5a40783}, ! Fixed Window Construction Name + {a4bcfecc-aa0e-47e1-b565-862ca5a40783}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {01681266-95ef-45f1-adcf-627110006496}, ! Handle + CBECS 1980-2004 ClimateZone 2b (s scho) Exterior DefSubCons, ! Name + {a4bcfecc-aa0e-47e1-b565-862ca5a40783}, ! Fixed Window Construction Name + {a4bcfecc-aa0e-47e1-b565-862ca5a40783}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {e14f2def-5a6d-436a-b761-ce36a9f3f309}, ! Handle + CBECS 1980-2004 ClimateZone 3a (s scho) Exterior DefSubCons, ! Name + {601d9a50-d571-467f-b571-5b7dca4d71bf}, ! Fixed Window Construction Name + {601d9a50-d571-467f-b571-5b7dca4d71bf}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {24f6a143-0660-4bc7-a9e5-e94c0996c7d8}, ! Handle + CBECS 1980-2004 ClimateZone 3b LAS (s scho) Exterior DefSubCons, ! Name + {1a3406b4-d5d8-4392-8943-c87e30018a87}, ! Fixed Window Construction Name + {1a3406b4-d5d8-4392-8943-c87e30018a87}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {d3efd27a-7f76-4520-af49-3d6e0b8050a7}, ! Handle + CBECS 1980-2004 ClimateZone 3b LAX (s scho) Exterior DefSubCons, ! Name + {fe5d3e8b-a3d4-4e0f-aca5-8af043c965e8}, ! Fixed Window Construction Name + {fe5d3e8b-a3d4-4e0f-aca5-8af043c965e8}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {2ba1f473-c27f-412e-b963-3a1072eda701}, ! Handle + CBECS 1980-2004 ClimateZone 3c (s scho) Exterior DefSubCons, ! Name + {350c2a89-42cb-47dd-bc5e-8cfa6361891b}, ! Fixed Window Construction Name + {350c2a89-42cb-47dd-bc5e-8cfa6361891b}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {4f8b6fb0-5a70-49ba-a6a8-4402407ebba7}, ! Handle + CBECS 1980-2004 ClimateZone 4a (s scho) Exterior DefSubCons, ! Name + {a68856ac-4914-4361-9c29-34cc2e916be3}, ! Fixed Window Construction Name + {a68856ac-4914-4361-9c29-34cc2e916be3}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {5e2387a5-6b29-4e7e-82f7-6f5a711ff152}, ! Handle + CBECS 1980-2004 ClimateZone 4b (s scho) Exterior DefSubCons, ! Name + {34c491b9-29e3-44f9-af74-7ca3425baa6d}, ! Fixed Window Construction Name + {34c491b9-29e3-44f9-af74-7ca3425baa6d}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {fe96d60e-fefa-4233-a0e3-9051065720c8}, ! Handle + CBECS 1980-2004 ClimateZone 4c (s scho) Exterior DefSubCons, ! Name + {db21706d-f6c9-4906-bfca-0b08de0c2a0e}, ! Fixed Window Construction Name + {db21706d-f6c9-4906-bfca-0b08de0c2a0e}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {c52d9ef3-c27a-46f6-89e8-0fafeca81603}, ! Handle + CBECS 1980-2004 ClimateZone 5a (s scho) Exterior DefSubCons, ! Name + {d04bfd29-0b63-4d88-b0c7-97e2e9fe8593}, ! Fixed Window Construction Name + {d04bfd29-0b63-4d88-b0c7-97e2e9fe8593}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {32486897-528d-4ab3-9966-869bfb79853c}, ! Handle + CBECS 1980-2004 ClimateZone 5b (s scho) Exterior DefSubCons, ! Name + {d04bfd29-0b63-4d88-b0c7-97e2e9fe8593}, ! Fixed Window Construction Name + {d04bfd29-0b63-4d88-b0c7-97e2e9fe8593}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {d7a18b48-793b-4c53-8acb-b79b2c0893eb}, ! Handle + CBECS 1980-2004 ClimateZone 6a (s scho) Exterior DefSubCons, ! Name + {1d2057aa-367d-414a-ac89-6628e2bcba9b}, ! Fixed Window Construction Name + {1d2057aa-367d-414a-ac89-6628e2bcba9b}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {d6e23cd8-7cf8-4087-ad8d-0a2e6904d61d}, ! Handle + CBECS 1980-2004 ClimateZone 6b (s scho) Exterior DefSubCons, ! Name + {1d2057aa-367d-414a-ac89-6628e2bcba9b}, ! Fixed Window Construction Name + {1d2057aa-367d-414a-ac89-6628e2bcba9b}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {fcc19bce-0ef9-4611-80f5-e7584bf9f523}, ! Handle + CBECS 1980-2004 ClimateZone 7 (s scho) Exterior DefSubCons, ! Name + {160f0a7c-ff95-4a35-b1c2-ffb6f0f0eacb}, ! Fixed Window Construction Name + {160f0a7c-ff95-4a35-b1c2-ffb6f0f0eacb}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {760db367-2e98-4758-a25a-d3f7e46c3e25}, ! Handle + CBECS 1980-2004 ClimateZone 8 (s scho) Exterior DefSubCons, ! Name + {18d22441-d49c-4e9f-99a9-c47766ecda5f}, ! Fixed Window Construction Name + {18d22441-d49c-4e9f-99a9-c47766ecda5f}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {2b11a090-7ac0-4e79-a0f8-6d07a27c70f9}, ! Handle + CBECS Before-1980 ClimateZone 1-3b (s scho) Exterior DefSubCons, ! Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Fixed Window Construction Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {1d3b6788-5966-454a-8bb7-0a4a662920f1}, ! Handle + CBECS Before-1980 ClimateZone 3c (s scho) Exterior DefSubCons, ! Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Fixed Window Construction Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {49805d4e-d49c-4947-9e36-6332fcd0915d}, ! Handle + CBECS Before-1980 ClimateZone 4a (s scho) Exterior DefSubCons, ! Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Fixed Window Construction Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {eaefc321-1d82-4b40-ab3d-8b605ba3907b}, ! Handle + CBECS Before-1980 ClimateZone 4b (s scho) Exterior DefSubCons, ! Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Fixed Window Construction Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {2e850914-3c5d-4ae6-abdb-232719b4fcc9}, ! Handle + CBECS Before-1980 ClimateZone 4c (s scho) Exterior DefSubCons, ! Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Fixed Window Construction Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {09adf731-d421-40ff-b989-0ee8e8d52fd7}, ! Handle + CBECS Before-1980 ClimateZone 5a (s scho) Exterior DefSubCons, ! Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Fixed Window Construction Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {b1a33b54-b58c-4394-a7b7-6179a5e37ddc}, ! Handle + CBECS Before-1980 ClimateZone 5b (s scho) Exterior DefSubCons, ! Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Fixed Window Construction Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {b820843a-1a42-4915-8bd1-6f94f956bce5}, ! Handle + CBECS Before-1980 ClimateZone 6 (s scho) Exterior DefSubCons, ! Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Fixed Window Construction Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {4744e069-6975-4865-9db2-1aa5a033f6ae}, ! Handle + CBECS Before-1980 ClimateZone 7 (s scho) Exterior DefSubCons, ! Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Fixed Window Construction Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {8cc10ecb-0874-471c-8f6e-127ec4722450}, ! Handle + CBECS Before-1980 ClimateZone 8 (s scho) Exterior DefSubCons, ! Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Fixed Window Construction Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {9dc89ff7-e9f1-471d-bfbe-d4c13c8ecca7}, ! Handle + example ASHRAE 189.1-2009 ClimateZone 5a AtticConstructionSet (s scho) Exterior DefSubCons, ! Name + {cb8c7d4e-9646-4d49-ab15-492be6063a6f}, ! Fixed Window Construction Name + {cb8c7d4e-9646-4d49-ab15-492be6063a6f}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {cb707dc6-31c7-4536-99ac-653be237d8e4}, ! Handle + example ASHRAE 90.1-2004 ClimateZone 5a AtticConstructionSet (s scho) Exterior DefSubCons, ! Name + {b46f753c-f0ce-4a6e-a6cb-0112ac1afdaa}, ! Fixed Window Construction Name + {b46f753c-f0ce-4a6e-a6cb-0112ac1afdaa}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {20f94217-e008-4234-b5eb-978d29bcfe48}, ! Handle + example CBECS 1980-2004 ClimateZone 5a AtticConstructionSet (s scho) Exterior DefSubCons, ! Name + {d04bfd29-0b63-4d88-b0c7-97e2e9fe8593}, ! Fixed Window Construction Name + {d04bfd29-0b63-4d88-b0c7-97e2e9fe8593}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {8ccd7bd5-0b70-486b-a5b5-5383fd7c1918}, ! Handle + example CBECS Before-1980 ClimateZone 5a AtticConstructionSet (s scho) Exterior DefSubCons, ! Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Fixed Window Construction Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSurfaceConstructions, + {6d3a4026-1e88-4e75-a198-01ae36f80f87}, ! Handle + 000 Exterior DefSurfCons, ! Name + {29a08e4c-fddd-4b98-af7c-fcd287ed072e}, ! Floor Construction Name + {6c7472d3-1e4d-47b4-8afb-6733094ed5d7}, ! Wall Construction Name + {813415d1-f505-4e0c-953a-49af3e762d48}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Handle + 000 Ground DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Wall Construction Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Handle + 000 Interior DefSurfCons, ! Name + {07092fd3-9719-4a3a-851a-61e694c7b2e6}, ! Floor Construction Name + {e6ff48b6-cff2-4bb8-aed2-df3c527afd49}, ! Wall Construction Name + {305c1cce-364a-4113-af8d-9f7f6db58322}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {ea2468bf-0ac7-4a35-9de0-da6a2a188677}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {45f51e73-925b-410b-ac89-a0e3467d0771}, ! Wall Construction Name + {977371f4-689a-41c6-8642-8f68aff9537c}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {84353bb7-e5e3-446a-ba4a-a9f66d01010c}, ! Handle + ASHRAE 189.1-2009 ClimateZone 2 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {45f51e73-925b-410b-ac89-a0e3467d0771}, ! Wall Construction Name + {16ca3b6f-5a0a-498e-bd42-63229111ebd8}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {aa3fc52c-cf27-44cf-8bc2-2b7d2c09b15a}, ! Handle + ASHRAE 189.1-2009 ClimateZone 3 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {45f51e73-925b-410b-ac89-a0e3467d0771}, ! Wall Construction Name + {16ca3b6f-5a0a-498e-bd42-63229111ebd8}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {e3335648-7af0-4e2d-9f43-7d3ab5081a13}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-5 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {ce0f71d7-73c2-4a1e-b3d3-0e5440ca5296}, ! Wall Construction Name + {16ca3b6f-5a0a-498e-bd42-63229111ebd8}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {d7d6e92c-4e46-4e84-b392-266fb4b72c6b}, ! Handle + ASHRAE 189.1-2009 ClimateZone 6 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {ce0f71d7-73c2-4a1e-b3d3-0e5440ca5296}, ! Wall Construction Name + {a8e21ad8-1c9d-4d7f-8664-133b46f7a330}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {6dcc2dd8-eebe-4d2c-8b85-3d638ca0df45}, ! Handle + ASHRAE 189.1-2009 ClimateZone 7-8 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {ce0f71d7-73c2-4a1e-b3d3-0e5440ca5296}, ! Wall Construction Name + {1e828946-1550-434e-9fff-71b43ebfbc38}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {6db01b71-537a-45bc-904e-4c6332fab6aa}, ! Handle + ASHRAE 90.1-2004 ClimateZone 1-2 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {69c0432a-a291-42fe-967d-79fb70e6f68b}, ! Wall Construction Name + {86115717-6ac2-43f6-a75f-6ada902eb588}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {2210df53-ea8f-44ce-82d5-ccc60f386113}, ! Handle + ASHRAE 90.1-2004 ClimateZone 3a-3b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {69c0432a-a291-42fe-967d-79fb70e6f68b}, ! Wall Construction Name + {86115717-6ac2-43f6-a75f-6ada902eb588}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {b0ea6546-eef6-44aa-b9b8-2effbb3f89e4}, ! Handle + ASHRAE 90.1-2004 ClimateZone 3c (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {69c0432a-a291-42fe-967d-79fb70e6f68b}, ! Wall Construction Name + {86115717-6ac2-43f6-a75f-6ada902eb588}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {0be66da3-497a-4f20-a39e-e80b6b447a74}, ! Handle + ASHRAE 90.1-2004 ClimateZone 4 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {69c0432a-a291-42fe-967d-79fb70e6f68b}, ! Wall Construction Name + {86115717-6ac2-43f6-a75f-6ada902eb588}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {34fb2098-cdaa-41fd-9388-9f95e8ae7212}, ! Handle + ASHRAE 90.1-2004 ClimateZone 5-6 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {8dbd7e3e-62fc-4d8b-81eb-32251586ffe4}, ! Wall Construction Name + {fd03cbb3-1345-4e42-9a8c-589aaa532ee6}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {77b56a4a-6765-4178-b26e-45c78e03585b}, ! Handle + ASHRAE 90.1-2004 ClimateZone 7 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {30ac70f8-4997-4d5e-b52d-01267d095c8f}, ! Wall Construction Name + {a5e66d6f-9309-4818-83a0-1229969c6918}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {5ce01e3e-b57d-4c02-a768-0acccf8bd443}, ! Handle + ASHRAE 90.1-2004 ClimateZone 8 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {30ac70f8-4997-4d5e-b52d-01267d095c8f}, ! Wall Construction Name + {60b9b486-9fea-4fa5-ba03-7a62df6530e1}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {c742fa4b-317a-478e-991f-96dbeeb1892b}, ! Handle + CBECS 1980-2004 ClimateZone 1 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {dace5542-a17c-412c-b697-3374df49a0df}, ! Wall Construction Name + {8c38de40-9814-4b87-ab70-aa6d5de8b222}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {cfb3c7a7-634c-4fe1-bd4a-a6f6bf2ef59a}, ! Handle + CBECS 1980-2004 ClimateZone 2a (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {af7bf8b3-d3bb-4b1b-9ba2-f5ffa268db9e}, ! Wall Construction Name + {17567edd-77c5-4970-a431-d588b38999be}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {ac385b3b-bbdc-43cc-bbd3-cd86b10d8635}, ! Handle + CBECS 1980-2004 ClimateZone 2b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {9e8f9fac-d534-4c1b-b050-9db05dea59d5}, ! Wall Construction Name + {3cafeaf1-daf6-4e03-8abf-9552f68c2653}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {c4801396-9518-425b-aac2-8f15def041dc}, ! Handle + CBECS 1980-2004 ClimateZone 3a (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {0e5b876b-aa12-4cc6-aa7c-9e02a44737ab}, ! Wall Construction Name + {67cdd7ff-a241-4ebb-ade0-a0329dcba876}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {fea5d7f8-2f57-4e80-ac30-5ceb2138c104}, ! Handle + CBECS 1980-2004 ClimateZone 3b LAS (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {6e66a394-02f3-4fbb-90ef-58e24657b9ae}, ! Wall Construction Name + {5929a8a2-0840-4121-a1a0-a72eedb0ad4d}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {c81bab38-4919-4961-a310-a20936e828f5}, ! Handle + CBECS 1980-2004 ClimateZone 3b LAX (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {fc5dd395-b69f-480d-a737-12e4d7e6f702}, ! Wall Construction Name + {91138a30-0037-49e7-ab7a-0b60734dcd50}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {e1fd9e94-75de-4cab-b282-7c6f058e87f1}, ! Handle + CBECS 1980-2004 ClimateZone 3c (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {cf2acecb-928f-43e5-85d5-1f6b5cfeae6c}, ! Wall Construction Name + {e8fc7e37-3932-4e54-baf4-acdac5b64c6a}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {6de712ef-0b2d-46a2-8f22-d836a3521769}, ! Handle + CBECS 1980-2004 ClimateZone 4a (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {c23573ef-8b97-4653-bff2-b41676a03cc5}, ! Wall Construction Name + {b3945bd3-5dd7-49f6-be6f-6e451ec91d32}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {0c429083-9ee7-474f-807b-7a29b54ae63c}, ! Handle + CBECS 1980-2004 ClimateZone 4b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {ccb790d1-f359-4aeb-a95e-fdabe6dd24b9}, ! Wall Construction Name + {251c04df-5ae8-4673-a3d4-e806b66fe9be}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {8cecab76-5e37-4f12-b298-49543cbf8659}, ! Handle + CBECS 1980-2004 ClimateZone 4c (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {d94ec03c-0bd9-408b-ad79-ea087ec77297}, ! Wall Construction Name + {c54b5d4a-4ddd-4db8-abb8-dbc0dd03f837}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {8bce6ef5-105a-4367-9c07-de93f64396b8}, ! Handle + CBECS 1980-2004 ClimateZone 5a (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {3b6b7c23-b714-4fba-9c17-ed00ba57acf0}, ! Wall Construction Name + {7fa202b0-f318-461c-8eae-a5b2d1eb84ae}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {3e376e1c-11ee-4b45-94ce-64fc8fa0390d}, ! Handle + CBECS 1980-2004 ClimateZone 5b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {3b6b7c23-b714-4fba-9c17-ed00ba57acf0}, ! Wall Construction Name + {1dd518f9-eb33-4254-aa76-a6552d3cedc9}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {deee3275-7856-4b7d-a3d1-80326e9b0a96}, ! Handle + CBECS 1980-2004 ClimateZone 6a (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {f22f386c-97cf-4198-8cd1-1a507b3f019d}, ! Wall Construction Name + {168f3bc4-5c52-4da9-b05c-03145da6c1c6}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {ce0c4479-9bd2-425a-9988-0cf69e0d520e}, ! Handle + CBECS 1980-2004 ClimateZone 6b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {539499a7-a540-434e-a4fd-3b78229d6483}, ! Wall Construction Name + {4e060302-cef7-4ff2-b3a2-81eeb49872a4}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {d6c8c1a2-f11a-4a7d-809e-6c2abe0b8b07}, ! Handle + CBECS 1980-2004 ClimateZone 7 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {f2b14196-7496-41fb-93be-e84398184ab1}, ! Wall Construction Name + {695cd322-1ca8-4080-90aa-8a54c6dc8655}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {0fca0418-fe6b-4372-ad6d-2288041c5960}, ! Handle + CBECS 1980-2004 ClimateZone 8 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {b427a890-b923-4a3a-8e8a-db080692b071}, ! Wall Construction Name + {91f7fb90-098f-4291-9617-60d5557186e7}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {47de92ed-439e-425a-9171-c2dcf43aea0e}, ! Handle + CBECS Before-1980 ClimateZone 1-3b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {a6174430-a1cd-477a-9134-5dd61f9260bf}, ! Wall Construction Name + {c10eb4c4-c6e7-4f7b-bca7-5bc77f986646}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {aa7db894-9f87-474b-abf1-159b4ca8243a}, ! Handle + CBECS Before-1980 ClimateZone 3c (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {bf89d7e8-db22-449a-88e0-ff884fd061dc}, ! Wall Construction Name + {c10eb4c4-c6e7-4f7b-bca7-5bc77f986646}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {f35594f5-b8bc-4c81-a54c-50c3e02485a5}, ! Handle + CBECS Before-1980 ClimateZone 4a (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {1f68eb3f-ed23-4dff-a91d-de23381d46ce}, ! Wall Construction Name + {8985ddac-3fd4-4ddd-af5f-92dfe8b9dcd9}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {c8214d50-64aa-4ca7-9940-a643b34ad7e0}, ! Handle + CBECS Before-1980 ClimateZone 4b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {d0d22f5e-83e3-4f3a-8de2-8e7267bbeaf1}, ! Wall Construction Name + {667121f9-e7cb-49a4-8471-3f862aa1cfce}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {2a69f761-2db8-4b6c-9dc3-3094f1f10b38}, ! Handle + CBECS Before-1980 ClimateZone 4c (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {89eb8c35-e705-4571-82fe-0ff8a0538e47}, ! Wall Construction Name + {810abe11-a5cb-430a-9653-ad13f46223de}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {75ef1bad-35f5-49a8-8dd0-25102fece624}, ! Handle + CBECS Before-1980 ClimateZone 5a (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {ad18d4fd-71ea-4f9d-ae08-612366035c0e}, ! Wall Construction Name + {8d18479b-8637-4d7c-a6f6-e38423de82b6}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {50a8dd6b-0e6a-4c65-b2c1-e6f262b6db4b}, ! Handle + CBECS Before-1980 ClimateZone 5b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {d6157b0f-6062-4a60-bc7b-6d3e5c720f26}, ! Wall Construction Name + {41b9d48b-f5ce-498f-9a19-af98986e5fbb}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {0376b90f-1758-4ccc-bb0e-cda27e1ce38b}, ! Handle + CBECS Before-1980 ClimateZone 6 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {e2530f8a-6f51-4a69-91a6-8ec59c79528b}, ! Wall Construction Name + {51efc6cc-a4bc-4cd9-90dc-81a6f767d96b}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {fa06a4f2-14f1-4d17-ba4f-dcc2b791e6ce}, ! Handle + CBECS Before-1980 ClimateZone 7 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {e5e01825-3931-491f-8adf-4446ddd810c9}, ! Wall Construction Name + {0714ed05-88eb-44a7-9990-aa7e4a7121ee}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {d5ffa33d-e9a2-4e65-90f6-9accd16b6926}, ! Handle + CBECS Before-1980 ClimateZone 8 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {40b8ff50-7261-439e-bd7b-5085147aa3d1}, ! Wall Construction Name + {c3e94101-a60b-4648-bbe9-64c63fbfdca2}; ! Roof Ceiling Construction Name + +OS:DesignSpecification:OutdoorAir, + {354bd757-5dfe-4f93-9dc2-bc3a64ae1530}, ! Handle + SecondarySchool Auditorium Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.0086106, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {d0a4fc11-114a-44d7-8155-c5dc8354d466}, ! Handle + SecondarySchool Cafeteria Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.01076452, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {8f41be0a-67fe-45a0-bdde-3f0463e95a17}, ! Handle + SecondarySchool Classroom Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.0086106, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {b61c75ec-9d59-4c79-979e-620c881ad58a}, ! Handle + SecondarySchool Corridor Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.0, ! Outdoor Air Flow per Person + 0.000508, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {789a59ab-8ea9-4790-b390-a62643f2669b}, ! Handle + SecondarySchool Gym Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.01076452, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {243b93a5-deca-47ac-8a99-36c84687c272}, ! Handle + SecondarySchool Kitchen Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.0086106, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {23afa95b-8d9d-45f6-bfe9-651c6d56c84d}, ! Handle + SecondarySchool Library Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.0086106, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {5f43d874-4a51-4818-b4ca-400d07ecb532}, ! Handle + SecondarySchool Lobby Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.0, ! Outdoor Air Flow per Person + 0.000508, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {f64caea0-6024-405a-8c7f-9d467adb0193}, ! Handle + SecondarySchool Mechanical Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.0, ! Outdoor Air Flow per Person + 0.000254, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {b252ac88-1494-4791-bd30-cbbb600228c3}, ! Handle + SecondarySchool Office Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.01076452, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {1cd7bc75-75ba-4524-9ebf-37ed30894c3a}, ! Handle + SecondarySchool Restroom Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.02690876, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:ElectricEquipment, + {d26b7217-95e5-4695-a04a-213fdda88118}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom ElecInst, ! Name + {9cb292f1-1517-4c24-b63e-de3eefda5c15}, ! Electric Equipment Definition Name + {f6c9890d-4fb2-4173-884a-8c6c03ed1670}, ! Space or SpaceType Name + , ! Schedule Name + , ! Multiplier + ElectricEquipment; ! End-Use Subcategory + +OS:ElectricEquipment, + {67ccf6df-1233-431e-a1bf-ab73ae1d1bc6}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria ElecInst, ! Name + {134fa385-4890-431e-9d39-6bd5d941e9aa}, ! Electric Equipment Definition Name + {e04862be-4937-4a7f-a795-7731f14e8f20}, ! Space or SpaceType Name + , ! Schedule Name + , ! Multiplier + ElectricEquipment; ! End-Use Subcategory + +OS:ElectricEquipment, + {a7623dc6-97aa-42ab-8b23-30a50e1dbe63}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym ElecInst, ! Name + {eebec64e-077d-4049-a05d-1ae0c8efaba2}, ! Electric Equipment Definition Name + {bb037295-1692-4a23-a0e4-ab2cba7fa69c}, ! Space or SpaceType Name + , ! Schedule Name + , ! Multiplier + ElectricEquipment; ! End-Use Subcategory + +OS:ElectricEquipment, + {3313cc21-7c64-4513-944f-4416330f3d92}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office ElecInst, ! Name + {a0b9411e-b379-4a48-97ec-dd8dc4e4165a}, ! Electric Equipment Definition Name + {09d69842-de39-414d-b3e6-ca9da2c8a145}, ! Space or SpaceType Name + , ! Schedule Name + , ! Multiplier + ElectricEquipment; ! End-Use Subcategory + +OS:ElectricEquipment:Definition, + {ca25f0fe-52c1-4e16-93b6-f7ab7ba7ee64}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Auditorium ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.659729541681306, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {7df0f35a-f4d0-4b47-85a8-036524a2c71b}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Cafeteria ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 13.993083541722639, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {bd18c850-0606-4736-8744-a505f86ab2e8}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Classroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 7.319459083362611, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {f6a80650-9f52-4c85-87c6-e28860fec6d7}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Corridor ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {e6693771-bf02-463b-8cd6-48ba23e1b834}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Gym ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.659729541681306, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {184544aa-5e55-4c00-8ffb-c139e2e84fbc}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Kitchen ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 161.99685177148132, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {130096b6-1866-41be-ac03-33af9b0b03aa}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Library ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 7.319459083362611, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {070cd2e8-691a-480d-9533-1a500a1b1b6b}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Lobby ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {1956a8b8-75a9-4bff-8422-bf2d013c3000}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Mechanical ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {2f9f1209-e426-4b6c-bab3-a15273895839}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Office ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 7.857654604198097, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {9a7404d1-a879-4f33-a638-4d5a94212db0}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Restroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {623424e0-ffa6-4998-b054-9d715eb452d2}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Auditorium ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.659729541681306, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {aa914409-a089-47c2-bac0-e837d297446d}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Cafeteria ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 13.993083541722639, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {9cb292f1-1517-4c24-b63e-de3eefda5c15}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 7.319459083362611, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {078a6b32-aab3-481b-9c42-ee17c0b73df9}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Corridor ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {d22c5591-c3e0-449a-b19e-83e4fbdbf14d}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Gym ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.659729541681306, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {947bb68b-badf-4cc0-aa03-ed6e22a84bbb}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Kitchen ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 161.99685177148132, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {05b3d9d9-996c-4715-bc8d-0a4463ffb9a6}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Library ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 7.319459083362611, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {b9c740f9-404e-4481-bec5-1e67ce999b65}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Lobby ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {e016166c-1003-422e-a0ea-3bfa6d78c8c7}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Mechanical ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {683fe6d6-f479-4492-914c-02af21ea526c}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Office ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 7.857654604198097, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {79f50dec-1a44-4a68-b816-d67e49bc2efd}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Restroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {18457619-3042-4801-ac01-a639c7ca7cfe}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Auditorium ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 4.951398791686472, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {134fa385-4890-431e-9d39-6bd5d941e9aa}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 19.2673996459104, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {e2696ca8-dcf0-4e03-8db2-15a6302936eb}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Classroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.010436687540041, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {fa4d29a0-769e-47d8-94cc-8d81dc3df050}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Corridor ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {eebec64e-077d-4049-a05d-1ae0c8efaba2}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 4.951398791686472, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {af487fb7-9887-4d21-baa7-7d0d990d331e}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Kitchen ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 222.27475010505574, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {724df75d-f5e4-4075-a6bb-0a3a3d94d4d8}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Library ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.010436687540041, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {b25e1c5a-7be1-49e0-b05b-cdd636ddca2a}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Lobby ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {d64b4559-5ec4-41f6-9c24-51e09cd68d70}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Mechanical ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {a0b9411e-b379-4a48-97ec-dd8dc4e4165a}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.763910416709722, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {7122a500-9eef-4cbf-b458-322350b63fa1}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Restroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {5e66be57-3d4b-4e21-adc1-58a24a178de3}, ! Handle + CBECS 1980-2004 SecondarySchool Auditorium ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 4.951398791686472, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {dc270458-c3dc-4236-9fcf-9844c92f321a}, ! Handle + CBECS 1980-2004 SecondarySchool Cafeteria ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 19.2673996459104, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {12f9d4be-6fc3-4c10-9bca-79241a4b2192}, ! Handle + CBECS 1980-2004 SecondarySchool Classroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.010436687540041, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {7ff03516-22b5-4fe2-859c-b42110209180}, ! Handle + CBECS 1980-2004 SecondarySchool Corridor ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {bedf137f-ea33-4814-be0c-5addf9809450}, ! Handle + CBECS 1980-2004 SecondarySchool Gym ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 4.951398791686472, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {f38c1763-8933-4aea-9ec6-32e9fc6bd21a}, ! Handle + CBECS 1980-2004 SecondarySchool Kitchen ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 222.27475010505574, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {2e7beab3-abed-4116-81e0-46a6fccf60ab}, ! Handle + CBECS 1980-2004 SecondarySchool Library ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.010436687540041, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {be6d3376-8bc4-43aa-a81e-4ab4b089c7fc}, ! Handle + CBECS 1980-2004 SecondarySchool Lobby ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {848f281c-706b-4d78-b89a-be8cef18016a}, ! Handle + CBECS 1980-2004 SecondarySchool Mechanical ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.9826485689374937, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {6f6e620c-b981-4b80-aa02-c22152c9ef3a}, ! Handle + CBECS 1980-2004 SecondarySchool Office ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.763910416709722, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {1de4b0fd-c264-446d-bd30-1407873b5e10}, ! Handle + CBECS 1980-2004 SecondarySchool Restroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {836eb3a1-6f55-49f2-9fa4-85b94d512bf7}, ! Handle + CBECS Before-1980 SecondarySchool Auditorium ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 4.951398791686472, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {691462ab-e2c3-4171-85c2-27e62181285b}, ! Handle + CBECS Before-1980 SecondarySchool Cafeteria ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 19.2673996459104, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {bf5a15db-066f-4e9d-bff2-bd62cd4776ca}, ! Handle + CBECS Before-1980 SecondarySchool Classroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.010436687540041, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {6648642d-0d5a-444a-bae1-3c9258b3f08d}, ! Handle + CBECS Before-1980 SecondarySchool Corridor ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {04d50e16-3cf9-4df3-b336-1d68df7149ca}, ! Handle + CBECS Before-1980 SecondarySchool Gym ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 4.951398791686472, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {a0050365-5ca2-42d6-a460-4b173f6e3ce8}, ! Handle + CBECS Before-1980 SecondarySchool Kitchen ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 222.27475010505574, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {fc327bb0-250b-46ab-a9e2-29b91eec6b7b}, ! Handle + CBECS Before-1980 SecondarySchool Library ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.010436687540041, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {9ef52b31-5247-4b03-9a51-95f8dc803f02}, ! Handle + CBECS Before-1980 SecondarySchool Lobby ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {b3c1d7ae-9ee9-46e6-a594-17ae7c0a453a}, ! Handle + CBECS Before-1980 SecondarySchool Mechanical ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {83fa2db7-8d4e-4ba3-a392-7511ae81e059}, ! Handle + CBECS Before-1980 SecondarySchool Office ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.763910416709722, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {fd660c6f-acf9-44de-9a0c-a45ef0a4f173}, ! Handle + CBECS Before-1980 SecondarySchool Restroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Facility, + {df022af2-2bf2-41f4-9493-e3e299105500}; ! Handle + +OS:GasEquipment:Definition, + {d0259b4b-270d-4de3-abc8-d030c9a3b80c}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Kitchen GasDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 815.7967704824299, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:GasEquipment:Definition, + {3556bef2-cc48-4d39-a00b-8c1496f550e4}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Kitchen GasDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 815.7967704824299, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:GasEquipment:Definition, + {1b6a2d45-5dd8-4c7a-9849-832a064bd655}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Kitchen GasDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 1119.446683337811, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:GasEquipment:Definition, + {3c4dcc68-bfbf-47fa-9a42-5cd579bfae90}, ! Handle + CBECS 1980-2004 SecondarySchool Kitchen GasDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 1119.446683337811, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:GasEquipment:Definition, + {5a294f81-2dd6-472e-b2c2-ada9924e3514}, ! Handle + CBECS Before-1980 SecondarySchool Kitchen GasDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 1119.446683337811, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights, + {4d1001e9-fb7b-411b-9650-3999155023ce}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom LightsInst, ! Name + {44525264-5ae2-41c3-b016-7955327fad5e}, ! Lights Definition Name + {f6c9890d-4fb2-4173-884a-8c6c03ed1670}, ! Space or SpaceType Name + , ! Schedule Name + , ! Fraction Replaceable + , ! Multiplier + Lights; ! End-Use Subcategory + +OS:Lights, + {d811ed80-6981-41c6-9da5-52060223aaf5}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria LightsInst, ! Name + {fb0bbd35-8296-42d5-84bb-8ed9872105dd}, ! Lights Definition Name + {e04862be-4937-4a7f-a795-7731f14e8f20}, ! Space or SpaceType Name + , ! Schedule Name + , ! Fraction Replaceable + , ! Multiplier + Lights; ! End-Use Subcategory + +OS:Lights, + {6eb556de-9f7e-46e8-a129-b29eb3398010}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym LightsInst, ! Name + {e50d0f72-131e-4259-ab72-d003add3be06}, ! Lights Definition Name + {bb037295-1692-4a23-a0e4-ab2cba7fa69c}, ! Space or SpaceType Name + , ! Schedule Name + , ! Fraction Replaceable + , ! Multiplier + Lights; ! End-Use Subcategory + +OS:Lights, + {26ac450f-ff2d-420a-bfe7-26d2a8a36dbe}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office LightsInst, ! Name + {a6db923d-710c-4c8e-b921-735e617d3c30}, ! Lights Definition Name + {09d69842-de39-414d-b3e6-ca9da2c8a145}, ! Space or SpaceType Name + , ! Schedule Name + , ! Fraction Replaceable + , ! Multiplier + Lights; ! End-Use Subcategory + +OS:Lights:Definition, + {29f57943-2770-4561-9942-e99a5166f28c}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Auditorium LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 8.718767437534876, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {60a07690-5be2-4f39-ac0e-6ee7c3ee6d56}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Cafeteria LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.562527125054249, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {9727faac-ae45-4c3b-a8ed-2c6b0aba474f}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Classroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.562527125054249, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {37292e39-8e47-4db0-9fb2-89316c37221d}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Corridor LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 4.843759687519375, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {c9dd54f0-21ec-484b-aff0-cc278c8af722}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Gym LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.562527125054249, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {59746ef9-a33a-4d71-b414-07f872fde902}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Kitchen LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 11.6250232500465, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {28c5f5e6-c784-47fa-b900-0dcc031701a1}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Library LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 12.593775187550376, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {76f82b36-a529-42f0-b484-8ab1748fab17}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Lobby LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 12.593775187550376, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {ee8ae907-5ca5-43f9-b73b-07b169f589f6}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Mechanical LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 14.531279062558125, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {21a96da2-3c26-458d-b0d3-24bcda47f9da}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Office LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 10.656271312542625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {7883ccfb-5011-46f0-bf5b-e2b2801a62e6}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Restroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 8.718767437534876, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {74892244-c94f-4188-8c95-4d62c144754b}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Auditorium LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 8.718767437534876, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {1f7dd48b-f1cb-4361-a46c-852765630b8e}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Cafeteria LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.562527125054249, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {44525264-5ae2-41c3-b016-7955327fad5e}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.562527125054249, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {b80e26dd-4b13-44b8-82f1-a54d6fee9047}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Corridor LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 4.843759687519375, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {7b9be7e7-bdd6-4be1-90ee-75f5ae14f60a}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Gym LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.562527125054249, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {6bd8b006-1847-4cff-bd93-6a0fb168db98}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Kitchen LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 11.6250232500465, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {71e61e74-0148-489a-9938-8009726549fc}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Library LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 12.593775187550376, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {ffc6209c-4631-46fc-9fb0-5c37f9e25c13}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Lobby LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 12.593775187550376, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {92089228-23b2-4a3d-b931-d62d50674755}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Mechanical LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 14.531279062558125, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {017982c3-c288-4188-a984-60fb32a32d82}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Office LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 10.656271312542625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {c611e62b-a3a3-4653-b114-ea1a5bb58737}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Restroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 8.718767437534876, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {644b1a1a-9726-4716-86f4-84cb7e6d6197}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Auditorium LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 9.68751937503875, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {fb0bbd35-8296-42d5-84bb-8ed9872105dd}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 15.06947458339361, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {fe367cbd-a800-4eaa-9992-d13225a7d935}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Classroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 15.06947458339361, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {ae1d8a42-5060-46cc-b503-af1d489e9b4b}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Corridor LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 5.381955208354861, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {e50d0f72-131e-4259-ab72-d003add3be06}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 15.06947458339361, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {ac691bea-8b23-4818-90ed-01330bf171cd}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Kitchen LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 12.916692500051665, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {09604ad9-1771-4c99-839c-6d39f193a162}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Library LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.993083541722639, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {b6cf8c58-f221-4f27-b1db-273ee6ed7f87}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Lobby LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.993083541722639, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {1cfb0d7d-5a2f-431c-95f5-1ed4f363fe22}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Mechanical LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 16.145865625064584, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {a6db923d-710c-4c8e-b921-735e617d3c30}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 11.840301458380695, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {248bc6c8-a661-460f-b55b-97e2a53a22d0}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Restroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 9.68751937503875, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {859216df-83b2-44b9-b3fb-78da7970b275}, ! Handle + CBECS 1980-2004 SecondarySchool Auditorium LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 12.05557966671489, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {449c9ddc-119c-4d27-a5b2-41302a206e51}, ! Handle + CBECS 1980-2004 SecondarySchool Cafeteria LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 14.423639958391028, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {9fcfa221-e4ec-434b-b7bc-4fe175f9f3a4}, ! Handle + CBECS 1980-2004 SecondarySchool Classroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 21.527820833419444, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {547ccfa8-e592-46a9-8f47-6692d92241ad}, ! Handle + CBECS 1980-2004 SecondarySchool Corridor LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 9.25696295837036, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {a196f6a5-8ad0-4d17-a1f7-1b7f54fef38f}, ! Handle + CBECS 1980-2004 SecondarySchool Gym LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 11.409745041712306, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {32ae3010-99fc-45f7-a583-95b93fc36e1a}, ! Handle + CBECS 1980-2004 SecondarySchool Kitchen LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 16.791700250067166, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {11fabd51-f326-4aae-97d8-fb8d398f2499}, ! Handle + CBECS 1980-2004 SecondarySchool Library LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 16.361143833398778, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {4ac4db73-41a2-4d68-b0dd-b074166f1087}, ! Handle + CBECS 1980-2004 SecondarySchool Lobby LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 12.05557966671489, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {62a22543-0b07-4b35-9705-a352928966ca}, ! Handle + CBECS 1980-2004 SecondarySchool Mechanical LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 8.0729362883868117, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {369ea87c-408a-4385-9098-6e0b910f336d}, ! Handle + CBECS 1980-2004 SecondarySchool Office LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 20.12851247924718, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {3f2e1f8a-411a-49b2-a346-0f8482062c9a}, ! Handle + CBECS 1980-2004 SecondarySchool Restroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 9.579880270871653, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {de105eb0-b976-42d2-bd9b-3ac29bfa3975}, ! Handle + CBECS Before-1980 SecondarySchool Auditorium LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 15.607670104229097, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {1ef6f563-8180-4763-967b-5fd0dd672001}, ! Handle + CBECS Before-1980 SecondarySchool Cafeteria LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 39.826468541825975, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {bbca227f-3be2-4704-bd3f-d09bf83a180c}, ! Handle + CBECS Before-1980 SecondarySchool Classroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 31.215340208458194, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {8bef7a3e-67e8-48bf-b0f4-a78937e554d6}, ! Handle + CBECS Before-1980 SecondarySchool Corridor LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 7.534737291696805, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {21774094-ab23-4aa0-aa76-e5cb7e796e9b}, ! Handle + CBECS Before-1980 SecondarySchool Gym LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 8.611128333367779, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {05278dcf-7f95-44d6-8063-b35b75cb3991}, ! Handle + CBECS Before-1980 SecondarySchool Kitchen LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 24.11115933342978, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {fcc70569-557c-4248-92a7-d2ea4fa2a809}, ! Handle + CBECS Before-1980 SecondarySchool Library LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 31.215340208458194, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {b8c9eee7-a552-4f51-8749-5040f25b95a5}, ! Handle + CBECS Before-1980 SecondarySchool Lobby LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 14.208361750056834, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {d28daaff-fe88-4a87-a624-2a43a8bafe09}, ! Handle + CBECS Before-1980 SecondarySchool Mechanical LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 6.458346250025833, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {29cb981a-2486-4870-8d1d-c8ec53f644c5}, ! Handle + CBECS Before-1980 SecondarySchool Office LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 31.215340208458194, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {f197e283-f2e9-49b3-a318-a9054e9153f0}, ! Handle + CBECS Before-1980 SecondarySchool Restroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 11.6250232500465, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Material, + {1d218594-792b-458c-975b-cd7996781265}, ! Handle + 000 F08 Metal surface, ! Name + Smooth, ! Roughness + 0.00080000000000000004, ! Thickness + 45.280000000000001, ! Conductivity + 7824, ! Density + 500; ! Specific Heat + +OS:Material, + {1f0b94e3-96e8-4759-9166-250e63a9c9c0}, ! Handle + 000 F16 Acoustic tile, ! Name + MediumSmooth, ! Roughness + 0.019099999999999999, ! Thickness + 0.059999999999999998, ! Conductivity + 368, ! Density + 590; ! Specific Heat + +OS:Material, + {4fe86c6d-f73e-4893-b73f-ddf808c38106}, ! Handle + 000 G01a 19mm gypsum board, ! Name + MediumSmooth, ! Roughness + 0.019, ! Thickness + 0.16, ! Conductivity + 800, ! Density + 1090; ! Specific Heat + +OS:Material, + {9e8fa22b-2f2c-4eb5-bc58-d1eb1139d1e2}, ! Handle + 000 G05 25mm wood, ! Name + MediumSmooth, ! Roughness + 0.025399999999999999, ! Thickness + 0.14999999999999999, ! Conductivity + 608, ! Density + 1630; ! Specific Heat + +OS:Material, + {b17db373-4e6e-4b7d-8516-c410024d24b1}, ! Handle + 000 I01 25mm insulation board, ! Name + MediumRough, ! Roughness + 0.025399999999999999, ! Thickness + 0.029999999999999999, ! Conductivity + 43, ! Density + 1210; ! Specific Heat + +OS:Material, + {af5b7091-c3f8-43a2-8649-aea656cff32a}, ! Handle + 000 I02 50mm insulation board, ! Name + MediumRough, ! Roughness + 0.050799999999999998, ! Thickness + 0.029999999999999999, ! Conductivity + 43, ! Density + 1210; ! Specific Heat + +OS:Material, + {d9860975-db36-40d7-b55a-f0e141209648}, ! Handle + 000 M01 100mm brick, ! Name + MediumRough, ! Roughness + 0.1016, ! Thickness + 0.89000000000000001, ! Conductivity + 1920, ! Density + 790; ! Specific Heat + +OS:Material, + {86b49bae-3be6-4a11-bc69-e43b9b400fdd}, ! Handle + 000 M05 200mm concrete block, ! Name + MediumRough, ! Roughness + 0.20319999999999999, ! Thickness + 1.1100000000000001, ! Conductivity + 800, ! Density + 920; ! Specific Heat + +OS:Material, + {2be9922c-b8c7-43fc-b6fb-130ba70b23ad}, ! Handle + 000 M11 100mm lightweight concrete, ! Name + MediumRough, ! Roughness + 0.1016, ! Thickness + 0.53000000000000003, ! Conductivity + 1280, ! Density + 840; ! Specific Heat + +OS:Material, + {67eea8d7-e2f1-42c7-bf4c-18e4532c3836}, ! Handle + 000 M15 200mm heavyweight concrete, ! Name + MediumRough, ! Roughness + 0.20319999999999999, ! Thickness + 1.95, ! Conductivity + 2240, ! Density + 900; ! Specific Heat + +OS:Material, + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Handle + 1/2IN Gypsum, ! Name + Smooth, ! Roughness + 0.012699999999999999, ! Thickness + 0.16, ! Conductivity + 784.89999999999998, ! Density + 830, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.92000000000000004, ! Solar Absorptance + 0.92000000000000004; ! Visible Absorptance + +OS:Material, + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Handle + 1IN Stucco, ! Name + Smooth, ! Roughness + 0.0253, ! Thickness + 0.69179999999999997, ! Conductivity + 1858, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.92000000000000004, ! Solar Absorptance + 0.92000000000000004; ! Visible Absorptance + +OS:Material, + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Handle + 8IN CONCRETE HW RefBldg, ! Name + Rough, ! Roughness + 0.20319999999999999, ! Thickness + 1.3109999999999999, ! Conductivity + 2240, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {85a770e5-d485-45d1-b263-003ded55d609}, ! Handle + 8IN Concrete HW, ! Name + MediumRough, ! Roughness + 0.20330000000000001, ! Thickness + 1.7296, ! Conductivity + 2243, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.65000000000000002, ! Solar Absorptance + 0.65000000000000002; ! Visible Absorptance + +OS:Material, + {f540da24-ef80-427d-ad40-f8507345b349}, ! Handle + AtticFloor Insulation, ! Name + MediumRough, ! Roughness + 0.2379, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {c20942b9-37de-435d-86ad-c3fc584ce8e0}, ! Handle + AtticFloor NonRes Insulation-1.76, ! Name + MediumRough, ! Roughness + 0.066610119320183195, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {40b59514-ff72-4c51-84fb-b7736f31b538}, ! Handle + AtticFloor NonRes Insulation-2.00, ! Name + MediumRough, ! Roughness + 0.078378027354382193, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {94733413-a109-4816-8e36-d55a91398732}, ! Handle + AtticFloor NonRes Insulation-2.38, ! Name + MediumRough, ! Roughness + 0.096931035516407596, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {447c32b2-6b85-4e77-b4c5-b8f411adeb04}, ! Handle + AtticFloor NonRes Insulation-2.45, ! Name + MediumRough, ! Roughness + 0.100170449639936, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f63a12b5-5b3b-4431-a7d1-6102de327439}, ! Handle + AtticFloor NonRes Insulation-2.67, ! Name + MediumRough, ! Roughness + 0.111066660782713, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {20e542e2-9a72-4e02-a2e0-4c2493ad98ee}, ! Handle + AtticFloor NonRes Insulation-2.75, ! Name + MediumRough, ! Roughness + 0.115152739961254, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {77b26504-2009-4b81-bdad-8f821d1a00f9}, ! Handle + AtticFloor NonRes Insulation-2.99, ! Name + MediumRough, ! Roughness + 0.12657991054531001, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {9f389579-0d9c-495f-8ae3-382eaac3cd7f}, ! Handle + AtticFloor NonRes Insulation-3.04, ! Name + MediumRough, ! Roughness + 0.129101768881102, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {395a9280-7ad1-4a3d-886e-3bdc54706855}, ! Handle + AtticFloor NonRes Insulation-3.32, ! Name + MediumRough, ! Roughness + 0.14581376530235901, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {1f77fbf0-7ad4-4450-9382-1eb1554a444c}, ! Handle + AtticFloor NonRes Insulation-3.45, ! Name + MediumRough, ! Roughness + 0.152199114340523, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {0dde938b-bdaf-489d-ae05-9841769cc73e}, ! Handle + AtticFloor NonRes Insulation-3.59, ! Name + MediumRough, ! Roughness + 0.15910571636139501, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {16b6d464-339f-4e73-871a-b446bcb1856a}, ! Handle + AtticFloor NonRes Insulation-3.67, ! Name + MediumRough, ! Roughness + 0.160099610925208, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3787390a-031c-4c3c-a80b-03e435f686c6}, ! Handle + AtticFloor NonRes Insulation-3.83, ! Name + MediumRough, ! Roughness + 0.167916458049374, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {14f95637-0415-4665-a114-78d9a1e5550f}, ! Handle + AtticFloor NonRes Insulation-3.91, ! Name + MediumRough, ! Roughness + 0.17476068094203701, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {55e7acf8-273f-4291-abd7-a194649038aa}, ! Handle + AtticFloor NonRes Insulation-4.40, ! Name + MediumRough, ! Roughness + 0.196057107696372, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {b4b47bd6-95ee-47ee-ab56-bc441826b03c}, ! Handle + AtticFloor NonRes Insulation-5.18, ! Name + MediumRough, ! Roughness + 0.30260955835061898, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {0b38724a-9bfa-4d69-842f-7080bc1fb7ba}, ! Handle + AtticFloor NonRes Insulation-5.68, ! Name + MediumRough, ! Roughness + 0.261367984993012, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3349792b-38e7-4fa2-a666-a7d07edf14ba}, ! Handle + AtticFloor NonRes Insulation-6.52, ! Name + MediumRough, ! Roughness + 0.30260955835061998, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8b86b4b2-e6c5-4ff6-84dd-c3a51748e996}, ! Handle + AtticFloor Res Insulation-2.05, ! Name + MediumRough, ! Roughness + 0.080658629686591293, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {38c2d62f-b193-4c3e-902e-fe3190e77900}, ! Handle + AtticFloor Res Insulation-2.37, ! Name + MediumRough, ! Roughness + 0.096537354632839606, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {60a25b0b-4187-43c5-8e39-81a368f55a0c}, ! Handle + AtticFloor Res Insulation-2.93, ! Name + MediumRough, ! Roughness + 0.124142114154045, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {aed17da6-63d5-4b8f-8f07-4b30d5fb9ae2}, ! Handle + IEAD NonRes Roof Insulation-1.76, ! Name + MediumRough, ! Roughness + 0.073980502979871604, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {140ca8f8-47f4-49f5-b334-453151c3836f}, ! Handle + IEAD NonRes Roof Insulation-1.98, ! Name + MediumRough, ! Roughness + 0.084646546965924593, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {db899a26-c96b-4d3c-84bc-a9a1982d3f33}, ! Handle + IEAD NonRes Roof Insulation-2.00, ! Name + MediumRough, ! Roughness + 0.085748411014070505, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {b8b2c44a-a897-40b4-9274-2aae442cfed6}, ! Handle + IEAD NonRes Roof Insulation-2.04, ! Name + MediumRough, ! Roughness + 0.088029013346279605, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d9215034-34f1-449d-a4c8-1435b4a3cd08}, ! Handle + IEAD NonRes Roof Insulation-2.07, ! Name + MediumRough, ! Roughness + 0.0892095604358938, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {224e456d-deb7-4af4-8334-8e1d4eeeb844}, ! Handle + IEAD NonRes Roof Insulation-2.37, ! Name + MediumRough, ! Roughness + 0.103907738292528, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f59f2aff-3f1b-49f8-872e-5f4a23ba58cb}, ! Handle + IEAD NonRes Roof Insulation-2.38, ! Name + MediumRough, ! Roughness + 0.1043014191761, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {55ab0a86-0a8d-4a52-a736-749d935dae58}, ! Handle + IEAD NonRes Roof Insulation-2.44, ! Name + MediumRough, ! Roughness + 0.10754083329962399, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {196873b2-fe90-46f8-b8b4-2b5fd9f1d2ce}, ! Handle + IEAD NonRes Roof Insulation-2.50, ! Name + MediumRough, ! Roughness + 0.110216071059399, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {76b8044d-c15f-4d39-923b-cd18d50eaf30}, ! Handle + IEAD NonRes Roof Insulation-2.67, ! Name + MediumRough, ! Roughness + 0.118437044442401, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a22b9ed6-b9d7-48c5-a520-71b717dc72a3}, ! Handle + IEAD NonRes Roof Insulation-2.75, ! Name + MediumRough, ! Roughness + 0.122523123620942, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f84c6785-3d37-4c66-99a9-3bff4334838e}, ! Handle + IEAD NonRes Roof Insulation-2.79, ! Name + MediumRough, ! Roughness + 0.12466345080970199, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {7af1df9e-4a42-4957-8b56-d9d80e015351}, ! Handle + IEAD NonRes Roof Insulation-2.85, ! Name + MediumRough, ! Roughness + 0.127338688569477, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {745f0704-7782-46c2-9d3d-cfbc967022c0}, ! Handle + IEAD NonRes Roof Insulation-2.93, ! Name + MediumRough, ! Roughness + 0.131512497813733, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {b6fd9dc9-1b4b-4590-b2d9-d6731170144a}, ! Handle + IEAD NonRes Roof Insulation-2.99, ! Name + MediumRough, ! Roughness + 0.13395029420499899, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d0695b3f-29e3-4841-9f7d-5cc390cb67bd}, ! Handle + IEAD NonRes Roof Insulation-3.03, ! Name + MediumRough, ! Roughness + 0.13647215254079001, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f7b481d5-1ff4-4ffe-b67a-5a9c9ffdf008}, ! Handle + IEAD NonRes Roof Insulation-3.38, ! Name + MediumRough, ! Roughness + 0.15318414896204699, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8d7490dd-b2ea-421c-8534-93b3aad23bd9}, ! Handle + IEAD NonRes Roof Insulation-3.51, ! Name + MediumRough, ! Roughness + 0.159569498000212, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {260dfcc8-83c0-4f5a-958d-c86fdd1d2a53}, ! Handle + IEAD NonRes Roof Insulation-3.65, ! Name + MediumRough, ! Roughness + 0.16647610002108301, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {0adc43b2-4e37-43c1-9970-77d58c387ef0}, ! Handle + IEAD NonRes Roof Insulation-3.66, ! Name + MediumRough, ! Roughness + 0.167469994584897, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {5dc32f3b-fcea-4d2a-96ce-b840610baf65}, ! Handle + IEAD NonRes Roof Insulation-3.72, ! Name + MediumRough, ! Roughness + 0.17014523234467099, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a1b53888-4d6a-4a54-afad-4bc86bda8dd5}, ! Handle + IEAD NonRes Roof Insulation-3.83, ! Name + MediumRough, ! Roughness + 0.175286841709063, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {7e92fb7d-7bd5-4a94-989d-3d9605ee925b}, ! Handle + IEAD NonRes Roof Insulation-3.97, ! Name + MediumRough, ! Roughness + 0.18213106460172601, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d1561fe6-9c80-4652-907c-f967c00a8c8d}, ! Handle + IEAD NonRes Roof Insulation-4.41, ! Name + MediumRough, ! Roughness + 0.20342749135606, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3d3a5ac2-7504-478f-b597-66c9816a7a97}, ! Handle + IEAD NonRes Roof Insulation-5.75, ! Name + MediumRough, ! Roughness + 0.26873836865270001, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {e554b4d5-9806-4622-bd5d-cf19b067ac63}, ! Handle + MAT-CC05 4 HW CONCRETE, ! Name + Rough, ! Roughness + 0.1016, ! Thickness + 1.3109999999999999, ! Conductivity + 2240, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8afa97e2-cdf9-4b9b-b482-9f36b58e3df0}, ! Handle + MAT-CC05 8 HW CONCRETE, ! Name + Rough, ! Roughness + 0.20319999999999999, ! Thickness + 1.3109999999999999, ! Conductivity + 2240, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {b571e075-2e93-4678-bd9a-bfd582892ee1}, ! Handle + Mass NonRes Wall Insulation-0.43, ! Name + MediumRough, ! Roughness + 0.00043678142662804302, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {c8cff21b-3056-48b8-acdf-306713dbb3e6}, ! Handle + Mass NonRes Wall Insulation-0.52, ! Name + MediumRough, ! Roughness + 0.0047702530604555003, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {87c45b13-cb93-41e8-b901-54e0e37d9881}, ! Handle + Mass NonRes Wall Insulation-0.61, ! Name + MediumRough, ! Roughness + 0.00914641899609407, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {18c8ccdb-c036-4b38-b49d-ba89546c7ce2}, ! Handle + Mass NonRes Wall Insulation-0.77, ! Name + MediumRough, ! Roughness + 0.0169093568297486, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {122b289c-ffc2-4892-8c42-c1207975f9df}, ! Handle + Mass NonRes Wall Insulation-0.78, ! Name + MediumRough, ! Roughness + 0.017743153856326299, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {ad2246a1-090f-45a5-ada5-fc4aaa85e7f0}, ! Handle + Mass NonRes Wall Insulation-0.79, ! Name + MediumRough, ! Roughness + 0.017914380031427101, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {870446bd-828d-40cd-ad0e-52d13acd500f}, ! Handle + Mass NonRes Wall Insulation-0.93, ! Name + MediumRough, ! Roughness + 0.024808486555221599, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {ce7df23e-efb6-4adc-adc5-fc28ec3aa28b}, ! Handle + Mass NonRes Wall Insulation-0.96, ! Name + MediumRough, ! Roughness + 0.026289573378747801, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {90b3d310-a43b-4aff-a560-91aa0c591f35}, ! Handle + Mass NonRes Wall Insulation-0.99, ! Name + MediumRough, ! Roughness + 0.027870508752174599, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d6851d22-d23b-4af1-83e4-dcfe591e050c}, ! Handle + Mass NonRes Wall Insulation-1.01, ! Name + MediumRough, ! Roughness + 0.0287016290627761, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d75c35b5-7b9a-4c1b-b622-7e8d7ada0320}, ! Handle + Mass NonRes Wall Insulation-1.09, ! Name + MediumRough, ! Roughness + 0.032989728056604301, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {84acd8fd-16ef-44a7-ab4b-9c7f4efcd522}, ! Handle + Mass NonRes Wall Insulation-1.13, ! Name + MediumRough, ! Roughness + 0.034707716435541901, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d901e9ce-e0ad-4727-a22e-c98d3ff2ad3d}, ! Handle + Mass NonRes Wall Insulation-1.17, ! Name + MediumRough, ! Roughness + 0.036539478879309799, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {4cea3a88-b653-4148-9530-4df3dfbd8d12}, ! Handle + Mass NonRes Wall Insulation-1.22, ! Name + MediumRough, ! Roughness + 0.0389043473584363, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a81edab3-3b35-48ed-9220-a80685aa3555}, ! Handle + Mass NonRes Wall Insulation-1.26, ! Name + MediumRough, ! Roughness + 0.041029913670032198, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {20f20667-e117-4257-baf6-ecab87e87e34}, ! Handle + Mass NonRes Wall Insulation-1.30, ! Name + MediumRough, ! Roughness + 0.042842896700511002, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {295e2bfe-fe69-4545-83e9-c4f9521ee9af}, ! Handle + Mass NonRes Wall Insulation-1.41, ! Name + MediumRough, ! Roughness + 0.048426884434385802, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3683b4f9-ea08-4624-9f6d-b52efc0262d0}, ! Handle + Mass NonRes Wall Insulation-1.43, ! Name + MediumRough, ! Roughness + 0.0495494599433393, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {c7e608d4-f8ed-44ff-a6a8-4bad9d84d75d}, ! Handle + Mass NonRes Wall Insulation-1.47, ! Name + MediumRough, ! Roughness + 0.051303484176078898, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {18de8fd5-ce43-4dfb-86a4-7ae97ca77b36}, ! Handle + Mass NonRes Wall Insulation-1.69, ! Name + MediumRough, ! Roughness + 0.062367329336436898, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {b9b5dafb-34a2-4832-8f15-0e9b1a6ef48d}, ! Handle + Mass NonRes Wall Insulation-1.76, ! Name + MediumRough, ! Roughness + 0.065686482884544303, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {2a062da2-674a-4ec6-bed2-7b1317449d3a}, ! Handle + Mass NonRes Wall Insulation-1.96, ! Name + MediumRough, ! Roughness + 0.075275148690188004, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {c04e605c-13b9-4d84-8928-6246e812f5e6}, ! Handle + Mass NonRes Wall Insulation-2.20, ! Name + MediumRough, ! Roughness + 0.087260980947242495, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {1a649724-b88f-49ac-8cff-30bb11629143}, ! Handle + Mass NonRes Wall Insulation-2.23, ! Name + MediumRough, ! Roughness + 0.088626455508172705, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {e7e84922-5a9e-48a5-a9e5-afd9baa53d1d}, ! Handle + Mass NonRes Wall Insulation-2.48, ! Name + MediumRough, ! Roughness + 0.100934958592615, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {5c087e08-0436-490a-b337-e1012a55954e}, ! Handle + Mass NonRes Wall Insulation-2.89, ! Name + MediumRough, ! Roughness + 0.120860609077674, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d6e8838b-7907-47eb-a3c1-8927c163415c}, ! Handle + Mass NonRes Wall Insulation-3.75, ! Name + MediumRough, ! Roughness + 0.16300124010352299, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {70477a34-7eba-45eb-a4de-cf012d9d7b22}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.54, ! Name + MediumRough, ! Roughness + 0.0153459874049154, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {48426b5b-8855-49b8-bc32-91a25f31da9e}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.57, ! Name + MediumRough, ! Roughness + 0.0169093568297486, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {71b3c0a8-0c7d-45dd-b33b-5bc1ce676b91}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.59, ! Name + MediumRough, ! Roughness + 0.017743153856326299, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {4ba4ab3b-5a4e-46b0-bbe9-babcc81b1f1f}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.61, ! Name + MediumRough, ! Roughness + 0.0186148507477484, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {83bbe90d-602f-4224-9893-83136b51bf4d}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.77, ! Name + MediumRough, ! Roughness + 0.026289573378747801, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {6fd59db3-0b7b-43cf-954e-74663858468e}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.80, ! Name + MediumRough, ! Roughness + 0.027870508752174599, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {98d65f2b-d4ce-406c-929a-738279b6e635}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.81, ! Name + MediumRough, ! Roughness + 0.0287016290627761, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f82bb960-61d1-4a6f-a562-557a26f190e6}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.90, ! Name + MediumRough, ! Roughness + 0.032989728056604301, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {85f8f973-3c89-4211-af04-33d272908153}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.91, ! Name + MediumRough, ! Roughness + 0.033324735790497099, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f2383d9e-2816-4bc0-8f83-e6d6b94d4b0a}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.94, ! Name + MediumRough, ! Roughness + 0.034707716435541901, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d6141305-51b8-4323-b5a2-535ee8c3bb8b}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.98, ! Name + MediumRough, ! Roughness + 0.036920485467613499, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {21cf61df-a7d6-458c-a896-50cd1bc3895e}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.02, ! Name + MediumRough, ! Roughness + 0.0389043473584363, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d66ed090-4246-4a1c-9810-c2b53be4315b}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.10, ! Name + MediumRough, ! Roughness + 0.042842896700511002, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {fb697fab-8967-4d6e-80b1-74d1e710f97a}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.12, ! Name + MediumRough, ! Roughness + 0.043789977388074601, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {7b77ac30-6a89-4e1d-b9da-9ae43d2c2fba}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.16, ! Name + MediumRough, ! Roughness + 0.045771561595899901, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {e1891fbc-6eb3-4f15-86cf-bea124d394cf}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.22, ! Name + MediumRough, ! Roughness + 0.048426884434385802, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a9ff92d5-25f5-4f59-a507-2af6536d5ebc}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.24, ! Name + MediumRough, ! Roughness + 0.0495494599433393, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3d460e61-5e0a-40f6-b397-bf8990c81085}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.37, ! Name + MediumRough, ! Roughness + 0.055758395280470899, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {30256185-eaf7-4da2-a000-f392993319eb}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.57, ! Name + MediumRough, ! Roughness + 0.065686482884544303, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {1d71daf6-04e0-4bb4-8cc9-5d2ecd6c19f0}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.72, ! Name + MediumRough, ! Roughness + 0.073190656123743703, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {1b906aff-1e98-471c-803d-42114d0a793f}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.79, ! Name + MediumRough, ! Roughness + 0.076352526870597404, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {9fd0362a-6a04-4b8c-ac16-52e57ea164b3}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.96, ! Name + MediumRough, ! Roughness + 0.084629944598133, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {df03566f-4b4b-4bd3-a213-43d0a2f7bd6f}, ! Handle + Metal Building Semi-Cond Wall Insulation-2.25, ! Name + MediumRough, ! Roughness + 0.099246813204296999, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {1de98b0b-94f6-4f17-9790-8d7b296f374b}, ! Handle + Metal Building Semi-Cond Wall Insulation-2.52, ! Name + MediumRough, ! Roughness + 0.112154632558048, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f3bdb7b6-e1f4-47fa-ac02-68c81b45d2ca}, ! Handle + Metal Building Semi-Cond Wall Insulation-2.85, ! Name + MediumRough, ! Roughness + 0.128178132445463, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {54da9b7c-0304-45b8-a392-2f28e6f465a8}, ! Handle + Metal Building Semi-Cond Wall Insulation-3.72, ! Name + MediumRough, ! Roughness + 0.17116180674662401, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3d133575-ec45-479e-9b7d-5828520e7eb2}, ! Handle + Metal Decking, ! Name + MediumSmooth, ! Roughness + 0.0015, ! Thickness + 45.006, ! Conductivity + 7680, ! Density + 418.39999999999998, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.29999999999999999; ! Visible Absorptance + +OS:Material, + {fc972994-dd0e-4437-a233-1355903fd496}, ! Handle + Metal Roofing, ! Name + MediumSmooth, ! Roughness + 0.0015, ! Thickness + 45.006, ! Conductivity + 7680, ! Density + 418.39999999999998, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.29999999999999999, ! Solar Absorptance + 0.29999999999999999; ! Visible Absorptance + +OS:Material, + {44f248c4-37da-42ad-8773-1bf3e9ab646b}, ! Handle + Metal Semi-Cond Roof Insulation-1.05, ! Name + MediumRough, ! Roughness + 0.042267330190631398, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8c500a1c-ebaa-4936-b9c8-b35ca266df1a}, ! Handle + Metal Semi-Cond Roof Insulation-1.76, ! Name + MediumRough, ! Roughness + 0.076889877979871596, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {47438003-dd17-400b-9a25-727cda295f7c}, ! Handle + Metal Semi-Cond Roof Insulation-1.81, ! Name + MediumRough, ! Roughness + 0.079558888049483703, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {2ecd27a2-6bf0-4359-9c23-e67031970553}, ! Handle + Metal Semi-Cond Roof Insulation-1.87, ! Name + MediumRough, ! Roughness + 0.082234125809258193, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {377ea17b-1b3e-40e1-a032-5869f41470d7}, ! Handle + Metal Semi-Cond Roof Insulation-2.00, ! Name + MediumRough, ! Roughness + 0.088657786014070594, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d37b5d62-6f0d-4c6b-95d6-8b13b63732fe}, ! Handle + Metal Semi-Cond Roof Insulation-2.38, ! Name + MediumRough, ! Roughness + 0.107210794176096, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {31d99a9d-b507-4dd2-afb5-f14c50c1a4e7}, ! Handle + Metal Semi-Cond Roof Insulation-2.44, ! Name + MediumRough, ! Roughness + 0.110450208299624, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8b3150a6-4f07-40e2-ba11-dce1bf83169b}, ! Handle + Metal Semi-Cond Roof Insulation-2.50, ! Name + MediumRough, ! Roughness + 0.113125446059399, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {e565690a-2b79-45d8-a9fb-f4b7253ac35c}, ! Handle + Metal Semi-Cond Roof Insulation-2.67, ! Name + MediumRough, ! Roughness + 0.121346419442401, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a191c6ee-210c-4493-abe7-862988743a1c}, ! Handle + Metal Semi-Cond Roof Insulation-2.75, ! Name + MediumRough, ! Roughness + 0.125432498620942, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {668ad162-42e4-413c-8f03-8d6503bcf245}, ! Handle + Metal Semi-Cond Roof Insulation-2.99, ! Name + MediumRough, ! Roughness + 0.13685966920499901, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {35804027-50dc-4b81-bdb7-41dd81747140}, ! Handle + Metal Semi-Cond Roof Insulation-3.03, ! Name + MediumRough, ! Roughness + 0.13938152754079, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {625e7420-3c4d-435c-b577-b2353eddaf2b}, ! Handle + Metal Semi-Cond Roof Insulation-3.38, ! Name + MediumRough, ! Roughness + 0.15609352396204701, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f96415b5-333d-4546-8f16-551de3d9d7c5}, ! Handle + Metal Semi-Cond Roof Insulation-3.65, ! Name + MediumRough, ! Roughness + 0.169385475021083, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {30c49646-b142-424e-bdf9-4847e11981c8}, ! Handle + Metal Semi-Cond Roof Insulation-3.66, ! Name + MediumRough, ! Roughness + 0.17037936958489699, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {5a58670b-6bb1-47cb-8f75-a6fc524bcfcd}, ! Handle + Metal Semi-Cond Roof Insulation-3.83, ! Name + MediumRough, ! Roughness + 0.17819621670906299, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {85c38964-7e59-4ea0-9adb-34f86b553691}, ! Handle + Metal Semi-Cond Roof Insulation-3.97, ! Name + MediumRough, ! Roughness + 0.185040439601726, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {5247aa24-ee4a-4a26-af3c-2599ac4b156a}, ! Handle + Metal Semi-Cond Roof Insulation-4.41, ! Name + MediumRough, ! Roughness + 0.20633686635605999, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {e2d23c0b-fdc5-4431-8ec6-81e16606e41b}, ! Handle + Metal Semi-Cond Roof Insulation-5.75, ! Name + MediumRough, ! Roughness + 0.271647743652701, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Handle + Metal Siding, ! Name + Smooth, ! Roughness + 0.0015, ! Thickness + 44.960000000000001, ! Conductivity + 7688.8599999999997, ! Density + 410, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.20000000000000001, ! Solar Absorptance + 0.20000000000000001; ! Visible Absorptance + +OS:Material, + {31d26021-19ad-4a4d-a584-52dc9eb24335}, ! Handle + Roof Insulation [18], ! Name + MediumRough, ! Roughness + 0.16930000000000001, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {20c8cf47-d89d-4538-813c-3f6e8520475c}, ! Handle + Roof Insulation [19], ! Name + MediumRough, ! Roughness + 0.18679999999999999, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {de583ecd-8cdf-4470-be9c-15b83f7ae0f4}, ! Handle + Roof Insulation [21], ! Name + MediumRough, ! Roughness + 0.21049999999999999, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {28b93355-ffe3-4311-9fea-4b6673604390}, ! Handle + Roof Insulation [22], ! Name + MediumRough, ! Roughness + 0.23580000000000001, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {e387406e-bc63-4782-8f37-c622cdefed1a}, ! Handle + Roof Insulation [24], ! Name + MediumRough, ! Roughness + 0.2601, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {c8ffc22b-d016-4ebe-958c-5d6d2e47d0eb}, ! Handle + Roof Insulation [25], ! Name + MediumRough, ! Roughness + 0.26300000000000001, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {049623b3-7aca-46bf-a5b2-aaa27e8be5f4}, ! Handle + Roof Insulation [26], ! Name + MediumRough, ! Roughness + 0.29409999999999997, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3442ccdb-832a-4e4b-a578-7f9ac6908079}, ! Handle + Roof Insulation [27], ! Name + MediumRough, ! Roughness + 0.29699999999999999, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Handle + Roof Membrane, ! Name + VeryRough, ! Roughness + 0.0094999999999999998, ! Thickness + 0.16, ! Conductivity + 1121.29, ! Density + 1460, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a06f6b6d-25f3-4313-a5ca-d10b08cd01b6}, ! Handle + Steel Frame NonRes Wall Insulation-0.73, ! Name + MediumRough, ! Roughness + 0.020278246975300701, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {9648adf1-1cfd-4959-b2b0-1fe96c98328a}, ! Handle + Steel Frame NonRes Wall Insulation-0.77, ! Name + MediumRough, ! Roughness + 0.021841616400133899, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {5b1e7cea-54b9-4059-b6ed-dc61cb4f8c88}, ! Handle + Steel Frame NonRes Wall Insulation-0.79, ! Name + MediumRough, ! Roughness + 0.0228466396018124, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {ddb0f918-b63e-43c7-9573-49db8064b3e5}, ! Handle + Steel Frame NonRes Wall Insulation-0.80, ! Name + MediumRough, ! Roughness + 0.0235471103181338, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {341d0543-d09b-4c63-b74e-73e67d7ef5be}, ! Handle + Steel Frame NonRes Wall Insulation-0.96, ! Name + MediumRough, ! Roughness + 0.0312218329491331, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {9731b4f8-7399-4f7d-9511-20a11c381c0a}, ! Handle + Steel Frame NonRes Wall Insulation-0.99, ! Name + MediumRough, ! Roughness + 0.032802768322560003, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8ab1d287-c9aa-42f4-85d2-640bd9f31ba7}, ! Handle + Steel Frame NonRes Wall Insulation-1.01, ! Name + MediumRough, ! Roughness + 0.033633888633161503, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {85e4a19d-7001-46a7-974a-fd8668f7b051}, ! Handle + Steel Frame NonRes Wall Insulation-1.09, ! Name + MediumRough, ! Roughness + 0.0379219876269897, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {0a6a8da6-2d64-4c90-99e7-e397f0e06bc4}, ! Handle + Steel Frame NonRes Wall Insulation-1.10, ! Name + MediumRough, ! Roughness + 0.038256995360882499, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3590b762-0a6f-486b-87ec-7fc4ad566046}, ! Handle + Steel Frame NonRes Wall Insulation-1.13, ! Name + MediumRough, ! Roughness + 0.039639976005927301, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {70726037-5c93-4967-b634-86c62e81d254}, ! Handle + Steel Frame NonRes Wall Insulation-1.17, ! Name + MediumRough, ! Roughness + 0.041852745037998899, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {6ceb61ae-d293-448a-9d3c-b756b7b1e3a4}, ! Handle + Steel Frame NonRes Wall Insulation-1.22, ! Name + MediumRough, ! Roughness + 0.0438366069288217, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {e64d2caf-b654-41a7-9307-9ae1abb96f22}, ! Handle + Steel Frame NonRes Wall Insulation-1.30, ! Name + MediumRough, ! Roughness + 0.047775156270896402, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {bc22faab-96f1-4058-b0d6-e90a93cff29a}, ! Handle + Steel Frame NonRes Wall Insulation-1.36, ! Name + MediumRough, ! Roughness + 0.050703821166285301, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f25d0999-b31a-46d8-9999-37c5c19b583d}, ! Handle + Steel Frame NonRes Wall Insulation-1.41, ! Name + MediumRough, ! Roughness + 0.053359144004771202, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {5345e826-350b-4b9e-b3a0-687082089267}, ! Handle + Steel Frame NonRes Wall Insulation-1.42, ! Name + MediumRough, ! Roughness + 0.053915905200000003, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f90e6959-0fe3-433f-80ca-8908a6b996b6}, ! Handle + Steel Frame NonRes Wall Insulation-1.76, ! Name + MediumRough, ! Roughness + 0.070618742454929703, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {9bf46ef8-7a8d-4d73-b6e9-28b7f87c966f}, ! Handle + Steel Frame NonRes Wall Insulation-1.92, ! Name + MediumRough, ! Roughness + 0.078122915694129103, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {62e3c160-9c4e-499b-82df-50ce9069db82}, ! Handle + Steel Frame NonRes Wall Insulation-1.98, ! Name + MediumRough, ! Roughness + 0.081284786440982706, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d5a9b5b8-e008-4a7a-925f-948053eb59b2}, ! Handle + Steel Frame NonRes Wall Insulation-2.10, ! Name + MediumRough, ! Roughness + 0.087056455264604496, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {73dcf23c-a2ac-416b-8240-d503ff433bdf}, ! Handle + Steel Frame NonRes Wall Insulation-2.15, ! Name + MediumRough, ! Roughness + 0.089562204168518303, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {7afb4b8c-56e4-4f2d-bbf1-f15ae619a45e}, ! Handle + Steel Frame NonRes Wall Insulation-2.44, ! Name + MediumRough, ! Roughness + 0.104179072774682, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a1cc5eca-97c4-4b06-82ee-53b15cd315d0}, ! Handle + Steel Frame NonRes Wall Insulation-2.71, ! Name + MediumRough, ! Roughness + 0.117086892128433, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8a2cd04f-bd95-490d-82e2-1b8453cca103}, ! Handle + Steel Frame NonRes Wall Insulation-2.75, ! Name + MediumRough, ! Roughness + 0.11916136309600101, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8ef4bdaf-b756-4204-9341-3fd6518751f6}, ! Handle + Steel Frame NonRes Wall Insulation-3.04, ! Name + MediumRough, ! Roughness + 0.13311039201584801, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a6d71516-e3d6-4a49-a581-874fe66ca8f3}, ! Handle + Steel Frame NonRes Wall Insulation-3.21, ! Name + MediumRough, ! Roughness + 0.14122619066011999, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a866faf2-2c39-4700-9fee-12c3855558b1}, ! Handle + Steel Frame NonRes Wall Insulation-3.91, ! Name + MediumRough, ! Roughness + 0.17609406631701, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a80d3ead-7a84-4c85-b4aa-8aa340918da0}, ! Handle + Wall Insulation [31], ! Name + MediumRough, ! Roughness + 0.033700000000000001, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {76e750a0-a7e3-47bd-80ae-a931a7bf930f}, ! Handle + Wall Insulation [32], ! Name + MediumRough, ! Roughness + 0.089700000000000002, ! Thickness + 0.044999999999999998, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8d3443dd-9a8d-4e06-a8a5-ad2d9679b841}, ! Handle + Wall Insulation [33], ! Name + MediumRough, ! Roughness + 0.078100000000000003, ! Thickness + 0.044999999999999998, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {0e65f2b1-8ce4-4b8f-8150-be67a72396a0}, ! Handle + Wall Insulation [34], ! Name + MediumRough, ! Roughness + 0.1104, ! Thickness + 0.044999999999999998, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {4c012a31-4819-43e8-9e89-aaa84f968cdf}, ! Handle + Wall Insulation [35], ! Name + MediumRough, ! Roughness + 0.045199999999999997, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {344c86df-4ad8-4b79-99c4-a9a82b13f479}, ! Handle + Wall Insulation [36], ! Name + MediumRough, ! Roughness + 0.056599999999999998, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {d42fdb74-e2b1-4c2c-9c0a-ee6bd2f85113}, ! Handle + Wall Insulation [37], ! Name + MediumRough, ! Roughness + 0.068099999999999994, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {49c4b265-13e9-4279-82a4-ef3c5400eb76}, ! Handle + Wall Insulation [38], ! Name + MediumRough, ! Roughness + 0.1396, ! Thickness + 0.044999999999999998, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {9701a490-5af6-40fb-8bb6-2cd3dfab8fad}, ! Handle + Wall Insulation [39], ! Name + MediumRough, ! Roughness + 0.11840000000000001, ! Thickness + 0.044999999999999998, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8c2dbf29-4947-44a4-a5a8-739f38ac8450}, ! Handle + Wall Insulation [40], ! Name + MediumRough, ! Roughness + 0.079399999999999998, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {fccd3bb6-cd7e-477f-bd00-e4bf7020e5b6}, ! Handle + Wall Insulation [41], ! Name + MediumRough, ! Roughness + 0.14050000000000001, ! Thickness + 0.044999999999999998, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8b9d564a-0e35-4e32-b53c-e53afd802a3e}, ! Handle + Wall Insulation [42], ! Name + MediumRough, ! Roughness + 0.091399999999999995, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {41c10ec3-3e7e-4c92-9de3-4a91a6aeadec}, ! Handle + Wall Insulation [43], ! Name + MediumRough, ! Roughness + 0.1583, ! Thickness + 0.044999999999999998, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a19e4898-5fe5-480b-a8a4-7c29b605dcd3}, ! Handle + Wall Insulation [44], ! Name + MediumRough, ! Roughness + 0.1104, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {8ff806a1-7f9c-44d1-9fd8-10fab2b3d86b}, ! Handle + Wall Insulation [46], ! Name + MediumRough, ! Roughness + 0.16339999999999999, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {86eec0d5-e0d5-4657-86de-b0b705b50ef8}, ! Handle + Wood Frame NonRes Wall Insulation-0.73, ! Name + MediumRough, ! Roughness + 0.020278246975300701, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {193edcb6-bfa0-4540-b193-e52c425ec189}, ! Handle + Wood Frame NonRes Wall Insulation-0.80, ! Name + MediumRough, ! Roughness + 0.0235471103181338, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {1d0cda6a-1450-495b-bb01-1a3737a774a8}, ! Handle + Wood Frame NonRes Wall Insulation-1.10, ! Name + MediumRough, ! Roughness + 0.038256995360882499, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {bbaf4d38-ce87-4a92-83ad-ee7436312e5d}, ! Handle + Wood Frame NonRes Wall Insulation-1.17, ! Name + MediumRough, ! Roughness + 0.041852745037998899, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3ca633fa-2e8d-4d7d-a47f-e106006d7990}, ! Handle + Wood Frame NonRes Wall Insulation-1.36, ! Name + MediumRough, ! Roughness + 0.050703821166285301, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8d0c591c-f3fe-4a36-85fd-6794ba88aed7}, ! Handle + Wood Frame NonRes Wall Insulation-1.76, ! Name + MediumRough, ! Roughness + 0.070618742454929703, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {1e0b94d9-67b7-4df7-b66b-1b5269485dd7}, ! Handle + Wood Frame NonRes Wall Insulation-1.92, ! Name + MediumRough, ! Roughness + 0.078122915694129103, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3ae6885a-f3c0-45a9-afad-82e1b9ba4d6e}, ! Handle + Wood Frame NonRes Wall Insulation-1.98, ! Name + MediumRough, ! Roughness + 0.081284786440982706, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {63ba25d9-1e37-4342-94d9-f46a865f347f}, ! Handle + Wood Frame NonRes Wall Insulation-2.15, ! Name + MediumRough, ! Roughness + 0.089562204168518303, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {bac9b3cc-98cb-4171-b025-b798df850e24}, ! Handle + Wood Frame NonRes Wall Insulation-2.44, ! Name + MediumRough, ! Roughness + 0.104179072774682, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {b830e255-c086-4cb0-8edd-cb7cdddfdaf8}, ! Handle + Wood Frame NonRes Wall Insulation-2.71, ! Name + MediumRough, ! Roughness + 0.117086892128433, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {70642f3c-f5d0-4b6e-b7eb-539337c61b10}, ! Handle + Wood Frame NonRes Wall Insulation-3.04, ! Name + MediumRough, ! Roughness + 0.13311039201584801, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {fb85a288-c42b-428b-9ea4-fd75691f1b8c}, ! Handle + Wood Frame NonRes Wall Insulation-3.45, ! Name + MediumRough, ! Roughness + 0.15353249971549501, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d702b8e9-b1ae-4af7-9e80-0a19eeeb317f}, ! Handle + Wood Frame NonRes Wall Insulation-3.91, ! Name + MediumRough, ! Roughness + 0.17609406631701, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8ad01829-f7da-4786-8028-167a932883c3}, ! Handle + Wood Siding, ! Name + MediumSmooth, ! Roughness + 0.01, ! Thickness + 0.11, ! Conductivity + 544.62, ! Density + 1210, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.78000000000000003, ! Solar Absorptance + 0.78000000000000003; ! Visible Absorptance + +OS:Material:AirGap, + {efc63ac2-25cf-4878-8100-f1e2d1f7e2f5}, ! Handle + 000 F04 Wall air space resistance, ! Name + 0.14999999999999999; ! Thermal Resistance + +OS:Material:AirGap, + {e5ef4582-1ed4-40f7-90f7-b948835c4680}, ! Handle + 000 F05 Ceiling air space resistance, ! Name + 0.17999999999999999; ! Thermal Resistance + +OS:Material:AirWall, + {d796cb9d-bda0-4151-b548-1464bc99e97b}, ! Handle + OS:Material:AirWall 1; ! Name + +OS:Material:NoMass, + {3593aa29-509d-4541-bc90-55d6bc20a274}, ! Handle + CP02 CARPET PAD, ! Name + VeryRough, ! Roughness + 0.2165, ! Thermal Resistance + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.80000000000000004; ! Visible Absorptance + +OS:Material:NoMass, + {ddfb04c9-cb49-421c-b929-8922fd84bc14}, ! Handle + MAT-SHEATH, ! Name + Rough, ! Roughness + 0.36259999999999998, ! Thermal Resistance + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Output:Variable, + {c0cdba06-0b37-464a-a3de-8f6704cd4f65}, ! Handle + hourly* - Daylighting Reference Point 2 Glare Index, ! Name + *, ! Key Value + Zone Mean Radiant Temperature, ! Variable Name + hourly; ! Reporting Frequency + +OS:Output:Variable, + {d6d7fb75-8008-4319-b3ed-e41645e7e2a5}, ! Handle + hourly* - Surface Outside Face Incident Solar Radiation Rate per Area, ! Name + *, ! Key Value + Zone Air System Sensible Cooling Rate, ! Variable Name + hourly; ! Reporting Frequency + +OS:Output:Variable, + {1c220058-5613-4f9c-9231-ed9275e4a5f9}, ! Handle + hourly* - Daylighting Reference Point 1 Glare Index, ! Name + *, ! Key Value + Zone Mean Air Temperature, ! Variable Name + hourly; ! Reporting Frequency + +OS:Output:Variable, + {794d107b-a9f3-40dc-b4be-da9f219b7116}, ! Handle + hourly* - Zone Mean Radiant Temperature, ! Name + *, ! Key Value + Zone Air System Sensible Heating Rate, ! Variable Name + hourly; ! Reporting Frequency + +OS:People, + {54b085c4-9616-4310-9476-56f9b4d09085}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom PeopInst, ! Name + {85458eaf-debf-4e6c-8344-0f6e6437c345}, ! People Definition Name + {f6c9890d-4fb2-4173-884a-8c6c03ed1670}; ! Space or SpaceType Name + +OS:People, + {b3b905be-5581-4d89-a172-05cc67ac2799}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria PeopInst, ! Name + {65b5cee7-4074-4f57-9f17-575ad3501283}, ! People Definition Name + {e04862be-4937-4a7f-a795-7731f14e8f20}; ! Space or SpaceType Name + +OS:People, + {86e35b58-d34a-4029-8f71-dbad29952458}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym PeopInst, ! Name + {7eeaf889-e95f-4ce7-a289-d1a9bf50c560}, ! People Definition Name + {bb037295-1692-4a23-a0e4-ab2cba7fa69c}; ! Space or SpaceType Name + +OS:People, + {9d5114e2-e54e-4e0b-a19d-8b3023715e88}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office PeopInst, ! Name + {4440c852-0983-44a2-bb72-25961e47f6a0}, ! People Definition Name + {09d69842-de39-414d-b3e6-ca9da2c8a145}; ! Space or SpaceType Name + +OS:People:Definition, + {adaaa059-e5ab-45f7-a372-0e4b4ba54b45}, ! Handle + SecondarySchool Auditorium PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 1.000397834129002, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {65b5cee7-4074-4f57-9f17-575ad3501283}, ! Handle + SecondarySchool Cafeteria PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.719459772252878, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {85458eaf-debf-4e6c-8344-0f6e6437c345}, ! Handle + SecondarySchool Classroom PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.249937999876, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {46c7ec9e-22df-4b21-a2f7-129c7d27da0b}, ! Handle + SecondarySchool Corridor PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.100212005979568, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {7eeaf889-e95f-4ce7-a289-d1a9bf50c560}, ! Handle + SecondarySchool Gym PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 1.000397834129002, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {0b200291-73b4-495e-a84e-2ce61f6743f5}, ! Handle + SecondarySchool Kitchen PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.166625333250666, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {e56b0307-5607-4182-a184-7a29c335e83a}, ! Handle + SecondarySchool Library PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.226042118750904, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {8a9dc87b-24d6-4986-9394-7ebc4462d29f}, ! Handle + SecondarySchool Lobby PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {c926a239-c6d4-4ac1-bf5d-57bc771a1424}, ! Handle + SecondarySchool Mechanical PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.01001043668754, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {4440c852-0983-44a2-bb72-25961e47f6a0}, ! Handle + SecondarySchool Office PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.0500521834377, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {b5cc9838-0551-4725-9d95-9038afac117d}, ! Handle + SecondarySchool Restroom PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.099996727771233, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:Rendering:Color, + {8f2a3d5a-9cc6-48e4-80db-4747319a30bd}, ! Handle + 000 AtticRoof ClimateZone 1-8 Color, ! Name + 198.9, ! Rendering Red Value + 0.0, ! Rendering Green Value + 131.274; ! Rendering Blue Value + +OS:Rendering:Color, + {7bae279f-a289-4694-ac26-5a556bd6d25d}, ! Handle + 000 ExtSlabCarpet 4in ClimateZone 1-8 Color, ! Name + 198.9, ! Rendering Red Value + 0.0, ! Rendering Green Value + 0.0; ! Rendering Blue Value + +OS:Rendering:Color, + {d814d9b4-b7a3-4c3b-9046-8200081e8e9d}, ! Handle + 000 ExtSlabCarpet 8in ClimateZone 1-8 Color, ! Name + 147.9, ! Rendering Red Value + 0.0, ! Rendering Green Value + 0.0; ! Rendering Blue Value + +OS:Rendering:Color, + {7623b45d-1afd-4e50-a5d4-8973e0f50839}, ! Handle + 000 ExtSlab 4in ClimateZone 1-8 Color, ! Name + 198.9, ! Rendering Red Value + 0.0, ! Rendering Green Value + 0.0; ! Rendering Blue Value + +OS:Rendering:Color, + {6bcc9c6f-d160-46e8-84fe-925510531a02}, ! Handle + 000 ExtSlab 8in ClimateZone 1-8 Color, ! Name + 147.9, ! Rendering Red Value + 0.0, ! Rendering Green Value + 0.0; ! Rendering Blue Value + +OS:Rendering:Color, + {d3a0f803-0902-4452-8351-44cb8ee5fa20}, ! Handle + 000 Exterior Door Color, ! Name + 124.3125, ! Rendering Red Value + 74.5875, ! Rendering Green Value + 89.505; ! Rendering Blue Value + +OS:Rendering:Color, + {cf93bb9a-a948-420e-8623-5dbd25e9063e}, ! Handle + 000 Exterior Floor Color, ! Name + 255.0, ! Rendering Red Value + 40.8, ! Rendering Green Value + 40.7999999999998; ! Rendering Blue Value + +OS:Rendering:Color, + {2f5b9735-dd16-4c9b-aa29-d2a0aa0d89a6}, ! Handle + 000 Exterior Roof Color, ! Name + 255.0, ! Rendering Red Value + 0.0, ! Rendering Green Value + 0.0; ! Rendering Blue Value + +OS:Rendering:Color, + {61d98f2f-703b-40e0-a799-9de5b09dc770}, ! Handle + 000 Exterior Wall Color, ! Name + 142.8, ! Rendering Red Value + 201.144, ! Rendering Green Value + 255.0; ! Rendering Blue Value + +OS:Rendering:Color, + {4e3d8c9a-e205-4b43-97a1-9ed42b4426ed}, ! Handle + 000 Exterior Window Color, ! Name + 198.9, ! Rendering Red Value + 0.0, ! Rendering Green Value + 59.6699999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {dc72bc9f-18f7-440c-b7c2-fe001cfd1243}, ! Handle + 000 Interior Ceiling Color, ! Name + 219.096, ! Rendering Red Value + 142.8, ! Rendering Green Value + 255.0; ! Rendering Blue Value + +OS:Rendering:Color, + {cd92f89b-4f39-4135-b4a2-17275db6be50}, ! Handle + 000 Interior Door Color, ! Name + 168.606, ! Rendering Red Value + 255.0, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {77cbc9c8-66df-4480-8d8c-d5a4529f1e25}, ! Handle + 000 Interior Floor Color, ! Name + 255.0, ! Rendering Red Value + 142.8, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {1210254c-7ac7-419d-a0ba-ce4fee5f6560}, ! Handle + 000 Interior Partition Color, ! Name + 165.24, ! Rendering Red Value + 142.8, ! Rendering Green Value + 255.0; ! Rendering Blue Value + +OS:Rendering:Color, + {813d283b-bc32-489c-b121-283a449f2f77}, ! Handle + 000 Interior Wall Color, ! Name + 142.8, ! Rendering Red Value + 201.144, ! Rendering Green Value + 255.0; ! Rendering Blue Value + +OS:Rendering:Color, + {22291e90-630d-428d-b67b-05ecd302f0f3}, ! Handle + 000 Interior Window Color, ! Name + 235.926, ! Rendering Red Value + 255.0, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {ae99e112-c3ee-41d0-8bef-ee0758bc55b8}, ! Handle + ASHRAE 189.1-2009 AtticFloor ClimateZone 1-8 Color, ! Name + 183.9825, ! Rendering Red Value + 14.9175, ! Rendering Green Value + 126.5004; ! Rendering Blue Value + +OS:Rendering:Color, + {f30f74c2-f870-4426-941b-6f11f3be90fe}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Auditorium Color, ! Name + 236.64, ! Rendering Red Value + 172.686, ! Rendering Green Value + 120.36; ! Rendering Blue Value + +OS:Rendering:Color, + {61fe2ec4-049f-47ca-af3c-e44fec3c96d6}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Cafeteria Color, ! Name + 55.488, ! Rendering Red Value + 179.52, ! Rendering Green Value + 24.48; ! Rendering Blue Value + +OS:Rendering:Color, + {f34b952d-8105-45c4-aef0-35179ecbaaf7}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Classroom Color, ! Name + 236.64, ! Rendering Red Value + 172.686, ! Rendering Green Value + 120.36; ! Rendering Blue Value + +OS:Rendering:Color, + {e85f6bef-91d7-4c0c-9bfb-d792a13d8335}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Corridor Color, ! Name + 179.52, ! Rendering Red Value + 24.48, ! Rendering Green Value + 24.4799999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {0d519839-927f-4e2d-a3ca-a3999b365a7e}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Gym Color, ! Name + 171.5232, ! Rendering Red Value + 236.64, ! Rendering Green Value + 120.36; ! Rendering Blue Value + +OS:Rendering:Color, + {a2384240-d33f-47ca-83d2-572fd8b18cae}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Kitchen Color, ! Name + 75.48, ! Rendering Red Value + 230.52, ! Rendering Green Value + 114.24; ! Rendering Blue Value + +OS:Rendering:Color, + {64b0f625-0627-4941-a1b2-5ad99ad24677}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Library Color, ! Name + 24.48, ! Rendering Red Value + 179.52, ! Rendering Green Value + 164.63616; ! Rendering Blue Value + +OS:Rendering:Color, + {f17d4248-dd6a-43db-9012-8c892c1ddb77}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Lobby Color, ! Name + 230.52, ! Rendering Red Value + 112.6896, ! Rendering Green Value + 75.48; ! Rendering Blue Value + +OS:Rendering:Color, + {35456b2a-49cc-4309-b239-236df468316b}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Mechanical Color, ! Name + 24.48, ! Rendering Red Value + 49.2864, ! Rendering Green Value + 179.52; ! Rendering Blue Value + +OS:Rendering:Color, + {c9018c1e-a72d-4381-a307-cef35f10ad98}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Office Color, ! Name + 120.36, ! Rendering Red Value + 236.64, ! Rendering Green Value + 201.756; ! Rendering Blue Value + +OS:Rendering:Color, + {df096596-1a7a-48d2-b709-91b28eeebced}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Restroom Color, ! Name + 179.52, ! Rendering Red Value + 164.016, ! Rendering Green Value + 24.48; ! Rendering Blue Value + +OS:Rendering:Color, + {cefc1a0f-a480-46b5-b9ee-8275aee4b952}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Auditorium Color, ! Name + 236.64, ! Rendering Red Value + 172.686, ! Rendering Green Value + 120.36; ! Rendering Blue Value + +OS:Rendering:Color, + {bea249ab-609e-4986-973f-5a3d0c0d949f}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Cafeteria Color, ! Name + 55.488, ! Rendering Red Value + 179.52, ! Rendering Green Value + 24.48; ! Rendering Blue Value + +OS:Rendering:Color, + {97a30e94-d4ec-4745-82d5-e727e925153f}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom Color, ! Name + 236.64, ! Rendering Red Value + 172.686, ! Rendering Green Value + 120.36; ! Rendering Blue Value + +OS:Rendering:Color, + {791dc87e-d1a0-4c6f-be59-174df3b1d592}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Corridor Color, ! Name + 179.52, ! Rendering Red Value + 24.48, ! Rendering Green Value + 24.4799999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {31c91cc4-ec3d-4ea7-b23c-ca4e81c93e4e}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Gym Color, ! Name + 171.5232, ! Rendering Red Value + 236.64, ! Rendering Green Value + 120.36; ! Rendering Blue Value + +OS:Rendering:Color, + {159e9aa7-7976-47d1-9858-bb314fd80607}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Kitchen Color, ! Name + 75.48, ! Rendering Red Value + 230.52, ! Rendering Green Value + 114.24; ! Rendering Blue Value + +OS:Rendering:Color, + {b310fc0b-cabf-4d52-830f-b637a9a7afa1}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Library Color, ! Name + 24.48, ! Rendering Red Value + 179.52, ! Rendering Green Value + 164.63616; ! Rendering Blue Value + +OS:Rendering:Color, + {3d27ee24-4856-40f2-abdc-12b2e95eb52d}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Lobby Color, ! Name + 230.52, ! Rendering Red Value + 112.6896, ! Rendering Green Value + 75.48; ! Rendering Blue Value + +OS:Rendering:Color, + {087c98bc-1b8b-41e4-8356-4f64b4ce8375}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Mechanical Color, ! Name + 24.48, ! Rendering Red Value + 49.2864, ! Rendering Green Value + 179.52; ! Rendering Blue Value + +OS:Rendering:Color, + {a5a4e33c-19a8-420b-9f36-2cede140a410}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Office Color, ! Name + 120.36, ! Rendering Red Value + 236.64, ! Rendering Green Value + 201.756; ! Rendering Blue Value + +OS:Rendering:Color, + {9ebf72b4-1257-446b-bed4-b8e1e8744554}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Restroom Color, ! Name + 179.52, ! Rendering Red Value + 164.016, ! Rendering Green Value + 24.48; ! Rendering Blue Value + +OS:Rendering:Color, + {8a992e70-c129-403b-8b13-93c9738bc546}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 1 Color, ! Name + 129.8817, ! Rendering Red Value + 14.9175, ! Rendering Green Value + 183.9825; ! Rendering Blue Value + +OS:Rendering:Color, + {4976e445-718a-404e-a33d-90431b9e5d21}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 2-5 Color, ! Name + 150.1695, ! Rendering Red Value + 14.9175, ! Rendering Green Value + 183.9825; ! Rendering Blue Value + +OS:Rendering:Color, + {5b498fa7-bba3-4431-9656-a98e927ab5f9}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 6 Color, ! Name + 183.9825, ! Rendering Red Value + 14.9175, ! Rendering Green Value + 106.2126; ! Rendering Blue Value + +OS:Rendering:Color, + {2ec6f8f3-9084-459e-9f03-aabb569e8e19}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 7-8 Color, ! Name + 183.9825, ! Rendering Red Value + 14.9175, ! Rendering Green Value + 96.0687; ! Rendering Blue Value + +OS:Rendering:Color, + {7844f75d-587b-41bf-899d-6a75b5418a2a}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 1 Color, ! Name + 180.6726, ! Rendering Red Value + 56.865, ! Rendering Green Value + 238.935; ! Rendering Blue Value + +OS:Rendering:Color, + {759d4320-98ad-459d-928d-676d7094d432}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 2-5 Color, ! Name + 202.521, ! Rendering Red Value + 56.865, ! Rendering Green Value + 238.935; ! Rendering Blue Value + +OS:Rendering:Color, + {f3efafc1-09d6-4a78-a953-808a39c92dd3}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 6 Color, ! Name + 238.935, ! Rendering Red Value + 56.865, ! Rendering Green Value + 155.1828; ! Rendering Blue Value + +OS:Rendering:Color, + {8f58adca-a5ac-4d96-b313-ee029c51cbf9}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 7-8 Color, ! Name + 238.935, ! Rendering Red Value + 56.865, ! Rendering Green Value + 144.2586; ! Rendering Blue Value + +OS:Rendering:Color, + {0dc90870-35ba-4503-ab69-d1203b74ff16}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 1 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 50.0973, ! Rendering Green Value + 89.6325; ! Rendering Blue Value + +OS:Rendering:Color, + {ba034033-11ee-4894-856c-32d268c2fe48}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 2 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 40.2135, ! Rendering Green Value + 89.6325; ! Rendering Blue Value + +OS:Rendering:Color, + {d2070426-24f1-4339-a28b-b7c43f5cb0e8}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 3 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 20.4459, ! Rendering Green Value + 89.6325; ! Rendering Blue Value + +OS:Rendering:Color, + {5a0f2c49-d318-4bc8-9c7c-b586e648bf1c}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 4 Color, ! Name + 8.91479999999992, ! Rendering Red Value + 7.26749999999999, ! Rendering Green Value + 89.6325; ! Rendering Blue Value + +OS:Rendering:Color, + {ae945c74-2815-4e9e-a0ba-0616bce0578e}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 5 Color, ! Name + 18.7985999999999, ! Rendering Red Value + 7.26749999999999, ! Rendering Green Value + 89.6325; ! Rendering Blue Value + +OS:Rendering:Color, + {a7472de2-df9b-444c-ba18-f44613e6983a}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 6 Color, ! Name + 28.6823999999999, ! Rendering Red Value + 7.26749999999999, ! Rendering Green Value + 89.6325; ! Rendering Blue Value + +OS:Rendering:Color, + {f93eb886-3096-4dde-9fc7-fa3d289767ff}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 7-8 Color, ! Name + 33.6242999999999, ! Rendering Red Value + 7.26749999999999, ! Rendering Green Value + 89.6325; ! Rendering Blue Value + +OS:Rendering:Color, + {2bb65d01-dad4-444d-b7b0-4816799d1144}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 1 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {55f61a60-7f16-473d-a185-fd9e8e250c06}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 2 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {81ca4376-a508-4c8c-847d-d70382485466}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 3 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {fad3dbc6-9b8a-40ce-8081-f814e16f28e3}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 4 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {7486c56c-a900-403f-89a3-1e4eabfa8124}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 5 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {23e60eec-9d05-4168-afb0-bc3cfa277da8}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 6 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {d6a7b659-e448-487b-aadd-160a3d87f6b1}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 7 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {8e7d04ac-0819-4907-941e-c1fa4494a8c6}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 8 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {5400731e-e096-4b6a-a3fa-9079d02cc13c}, ! Handle + ASHRAE 189.1-2009 ExtWall Metal ClimateZone 1-3 Color, ! Name + 12.24, ! Rendering Red Value + 84.3744, ! Rendering Green Value + 150.96; ! Rendering Blue Value + +OS:Rendering:Color, + {7a9f7259-6873-4a3a-8c3b-8d22d3501db9}, ! Handle + ASHRAE 189.1-2009 ExtWall Metal ClimateZone 4-8 Color, ! Name + 15.0143999999999, ! Rendering Red Value + 12.24, ! Rendering Green Value + 150.96; ! Rendering Blue Value + +OS:Rendering:Color, + {7ed5eb98-f550-40f4-b8e9-c44844f1f7d0}, ! Handle + ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 1-3 Color, ! Name + 17.2125, ! Rendering Red Value + 118.6515, ! Rendering Green Value + 212.2875; ! Rendering Blue Value + +OS:Rendering:Color, + {aa2fa94a-f5ed-4039-903b-f4a0811268a0}, ! Handle + ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 4-8 Color, ! Name + 21.1139999999998, ! Rendering Red Value + 17.2125, ! Rendering Green Value + 212.2875; ! Rendering Blue Value + +OS:Rendering:Color, + {5f2b0115-75bf-4e9f-9d14-c1b9396f6261}, ! Handle + ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 1-4 Color, ! Name + 56.865, ! Rendering Red Value + 151.5414, ! Rendering Green Value + 238.935; ! Rendering Blue Value + +OS:Rendering:Color, + {5cd2f84d-2dfd-4573-bfc9-b2a77d0616d8}, ! Handle + ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 5 Color, ! Name + 82.3547999999998, ! Rendering Red Value + 56.865, ! Rendering Green Value + 238.935; ! Rendering Blue Value + +OS:Rendering:Color, + {5dad2af1-dd1d-4b58-bc98-ba22c9f181f9}, ! Handle + ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 6-8 Color, ! Name + 104.2032, ! Rendering Red Value + 56.865, ! Rendering Green Value + 238.935; ! Rendering Blue Value + +OS:Rendering:Color, + {ab97b6e5-3903-43b9-aad1-d106c7abf6ef}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 1 Color, ! Name + 207.9831, ! Rendering Red Value + 238.935, ! Rendering Green Value + 56.865; ! Rendering Blue Value + +OS:Rendering:Color, + {4ea48022-bbec-4218-b258-cf15497d76d7}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 2 Color, ! Name + 186.1347, ! Rendering Red Value + 238.935, ! Rendering Green Value + 56.865; ! Rendering Blue Value + +OS:Rendering:Color, + {b4437797-7cef-4ceb-96d1-0570c6b264ae}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 3 Color, ! Name + 142.4379, ! Rendering Red Value + 238.935, ! Rendering Green Value + 56.865; ! Rendering Blue Value + +OS:Rendering:Color, + {1da1acaa-abf2-4433-a050-2a2cbf45442b}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 4-5 Color, ! Name + 109.6653, ! Rendering Red Value + 238.935, ! Rendering Green Value + 56.865; ! Rendering Blue Value + +OS:Rendering:Color, + {56908274-fc3a-4d3d-bf2f-aaca6a9f96d2}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 6 Color, ! Name + 65.9684999999999, ! Rendering Red Value + 238.935, ! Rendering Green Value + 56.865; ! Rendering Blue Value + +OS:Rendering:Color, + {4812629c-f75b-422f-b138-bd798604eb7b}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 7-8 Color, ! Name + 56.865, ! Rendering Red Value + 238.935, ! Rendering Green Value + 58.6857; ! Rendering Blue Value + +OS:Rendering:Color, + {617f0af7-5f1d-48cf-9960-70851e9284f2}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone alt-res 4-5 Color, ! Name + 56.865, ! Rendering Red Value + 238.935, ! Rendering Green Value + 217.0866; ! Rendering Blue Value + +OS:Rendering:Color, + {ae9fc8d2-7a15-4f5a-8c67-4583e48bcf73}, ! Handle + ASHRAE 90.1-2004 AtticFloor ClimateZone 1-5 Color, ! Name + 174.0375, ! Rendering Red Value + 24.8625, ! Rendering Green Value + 123.318; ! Rendering Blue Value + +OS:Rendering:Color, + {4f734284-54dd-47cf-88b4-16c51190397b}, ! Handle + ASHRAE 90.1-2004 AtticFloor ClimateZone 6-8 Color, ! Name + 174.0375, ! Rendering Red Value + 24.8625, ! Rendering Green Value + 24.8624999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {e921346c-db99-4133-9067-806085ec979b}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 1-4 Color, ! Name + 126.3015, ! Rendering Red Value + 24.8625, ! Rendering Green Value + 174.0375; ! Rendering Blue Value + +OS:Rendering:Color, + {8a48315d-f678-4301-8484-4113d3b5bf9e}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 5-6 Color, ! Name + 174.0375, ! Rendering Red Value + 24.8625, ! Rendering Green Value + 123.318; ! Rendering Blue Value + +OS:Rendering:Color, + {8be96dd4-a335-40d8-8b25-f0c43816f7e8}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 7 Color, ! Name + 174.0375, ! Rendering Red Value + 24.8625, ! Rendering Green Value + 96.4665; ! Rendering Blue Value + +OS:Rendering:Color, + {fdbdd6c1-0a2f-43b2-a068-d0e41631ea7d}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 8 Color, ! Name + 174.0375, ! Rendering Red Value + 24.8625, ! Rendering Green Value + 87.516; ! Rendering Blue Value + +OS:Rendering:Color, + {0f837524-9b4a-4547-bef4-b29285d9d3c8}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 1 Color, ! Name + 176.817, ! Rendering Red Value + 67.5749999999999, ! Rendering Green Value + 228.225; ! Rendering Blue Value + +OS:Rendering:Color, + {feaeecac-56e4-4538-b080-9a2a15914e6d}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 2 Color, ! Name + 196.095, ! Rendering Red Value + 67.5749999999999, ! Rendering Green Value + 228.225; ! Rendering Blue Value + +OS:Rendering:Color, + {66a12368-1a32-4d8b-b5e7-6ec79de79af0}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 3-4 Color, ! Name + 228.225, ! Rendering Red Value + 67.5749999999999, ! Rendering Green Value + 221.799; ! Rendering Blue Value + +OS:Rendering:Color, + {c7631f0a-0e54-4165-b863-813007dbc8c7}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 5-6 Color, ! Name + 228.225, ! Rendering Red Value + 67.5749999999999, ! Rendering Green Value + 173.604; ! Rendering Blue Value + +OS:Rendering:Color, + {114de8bc-a767-4ffe-8208-1e3615aa9fc0}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 7 Color, ! Name + 228.225, ! Rendering Red Value + 67.5749999999999, ! Rendering Green Value + 144.687; ! Rendering Blue Value + +OS:Rendering:Color, + {c2ac665d-dcc6-4355-b799-bf3c1c0fcc09}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 8 Color, ! Name + 228.225, ! Rendering Red Value + 67.5749999999999, ! Rendering Green Value + 135.048; ! Rendering Blue Value + +OS:Rendering:Color, + {45e1dcc5-591f-4946-bbf5-05607f4244f2}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 1-2 Color, ! Name + 12.1125, ! Rendering Red Value + 49.9035, ! Rendering Green Value + 84.7875; ! Rendering Blue Value + +OS:Rendering:Color, + {7d7e2bfd-f9a7-4d13-9ae4-80c00bf7a742}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 3-4 Color, ! Name + 12.1125, ! Rendering Red Value + 23.7405, ! Rendering Green Value + 84.7875; ! Rendering Blue Value + +OS:Rendering:Color, + {b92b35cb-01e6-4ab9-9655-82643f140b76}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 5 Color, ! Name + 22.2869999999999, ! Rendering Red Value + 12.1125, ! Rendering Green Value + 84.7875; ! Rendering Blue Value + +OS:Rendering:Color, + {88bab52e-b838-4a40-870c-f7db3fb30e6e}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 6 Color, ! Name + 31.0079999999999, ! Rendering Red Value + 12.1125, ! Rendering Green Value + 84.7875; ! Rendering Blue Value + +OS:Rendering:Color, + {fbd85bef-0824-4ac4-bcb7-023d2b668fd5}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 7 Color, ! Name + 35.3685, ! Rendering Red Value + 12.1125, ! Rendering Green Value + 84.7875; ! Rendering Blue Value + +OS:Rendering:Color, + {40f3bfef-bf87-49ab-8404-488a213a36c4}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 8 Color, ! Name + 39.729, ! Rendering Red Value + 12.1125, ! Rendering Green Value + 84.7875; ! Rendering Blue Value + +OS:Rendering:Color, + {e93362f6-cd75-465d-badb-8772a9a878dc}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 1-2 Color, ! Name + 12.1125, ! Rendering Red Value + 84.7875, ! Rendering Green Value + 76.0665; ! Rendering Blue Value + +OS:Rendering:Color, + {668374ea-48a1-404b-b05e-6b526689ec1d}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 3 Color, ! Name + 12.1125, ! Rendering Red Value + 84.7875, ! Rendering Green Value + 76.0665; ! Rendering Blue Value + +OS:Rendering:Color, + {f8b15c3c-f345-4aff-ae1c-b30291af6ae1}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 4 Color, ! Name + 12.1125, ! Rendering Red Value + 84.7875, ! Rendering Green Value + 76.0665; ! Rendering Blue Value + +OS:Rendering:Color, + {ab8dbd3a-a4c1-43cd-9ab7-6e6ba514b9e8}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 5-6 Color, ! Name + 12.1125, ! Rendering Red Value + 84.7875, ! Rendering Green Value + 76.0665; ! Rendering Blue Value + +OS:Rendering:Color, + {75dcefd3-517a-4efa-ba1a-70a1b1aca1c0}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 7 Color, ! Name + 12.1125, ! Rendering Red Value + 84.7875, ! Rendering Green Value + 76.0665; ! Rendering Blue Value + +OS:Rendering:Color, + {19194a1d-e464-4609-a589-e7a2a05c0cfe}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 8 Color, ! Name + 12.1125, ! Rendering Red Value + 84.7875, ! Rendering Green Value + 76.0665; ! Rendering Blue Value + +OS:Rendering:Color, + {1421f1b7-085d-4154-a2b6-fac857076801}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 1 Color, ! Name + 20.4, ! Rendering Red Value + 84.048, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {5f58ba6c-8132-413b-91d3-35d370a9253c}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 2-3 Color, ! Name + 20.4, ! Rendering Red Value + 69.36, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {70350214-8af5-4d2c-a46d-108f5f9d2f92}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 4 Color, ! Name + 22.8479999999999, ! Rendering Red Value + 20.4, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {9c054d76-e292-4f75-95ac-375b2276806a}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 5 Color, ! Name + 37.5359999999999, ! Rendering Red Value + 20.4, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {f8a91a38-ff32-45da-b4cd-cee4a1bc3ba2}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 6-8 Color, ! Name + 52.2239999999999, ! Rendering Red Value + 20.4, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {7f007c93-c5ee-439c-bc52-21c8f948c4d2}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 1-4 Color, ! Name + 28.6875, ! Rendering Red Value + 118.1925, ! Rendering Green Value + 200.8125; ! Rendering Blue Value + +OS:Rendering:Color, + {b455493b-cf36-496d-b6c8-16c0685575ee}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 5-6 Color, ! Name + 52.7849999999999, ! Rendering Red Value + 28.6875, ! Rendering Green Value + 200.8125; ! Rendering Blue Value + +OS:Rendering:Color, + {833e8d8b-56c8-4ea7-adcf-a5adf38b6904}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 7-8 Color, ! Name + 83.7674999999999, ! Rendering Red Value + 28.6875, ! Rendering Green Value + 200.8125; ! Rendering Blue Value + +OS:Rendering:Color, + {3b4a8573-972f-42ed-a36d-a53877b7383d}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 3 Color, ! Name + 28.6875, ! Rendering Red Value + 200.8125, ! Rendering Green Value + 180.1575; ! Rendering Blue Value + +OS:Rendering:Color, + {965c8993-83e0-46b1-be21-593be34abb11}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 4-6 Color, ! Name + 28.6875, ! Rendering Red Value + 200.8125, ! Rendering Green Value + 180.1575; ! Rendering Blue Value + +OS:Rendering:Color, + {238ccbec-0407-4579-a404-1cacef82238d}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 8 Color, ! Name + 28.6875, ! Rendering Red Value + 200.8125, ! Rendering Green Value + 180.1575; ! Rendering Blue Value + +OS:Rendering:Color, + {4dca5ed6-d704-4334-8ec6-653dbff131e7}, ! Handle + ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 1-7 Color, ! Name + 67.5749999999999, ! Rendering Red Value + 151.113, ! Rendering Green Value + 228.225; ! Rendering Blue Value + +OS:Rendering:Color, + {ad1987ec-f445-4571-95f5-f5914197a980}, ! Handle + ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 8 Color, ! Name + 128.622, ! Rendering Red Value + 67.5749999999999, ! Rendering Green Value + 228.225; ! Rendering Blue Value + +OS:Rendering:Color, + {629f5df4-c7b6-4ac0-afa1-7feb3878178c}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 1-2 Color, ! Name + 200.9145, ! Rendering Red Value + 228.225, ! Rendering Green Value + 67.5749999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {c77e95a2-1007-44af-a260-4836538b6f58}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 3a-3b Color, ! Name + 143.0805, ! Rendering Red Value + 228.225, ! Rendering Green Value + 67.5749999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {cc0c385b-1564-41c5-b1dc-0d539a582989}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 3c Color, ! Name + 143.0805, ! Rendering Red Value + 228.225, ! Rendering Green Value + 67.5749999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {c8900b40-3cca-4149-a194-187407b9b7ea}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 4-6 Color, ! Name + 114.1635, ! Rendering Red Value + 228.225, ! Rendering Green Value + 67.5749999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {6278f54e-a787-4fdb-8650-f9cc51404402}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 7 Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 69.1815; ! Rendering Blue Value + +OS:Rendering:Color, + {a1483ca7-7c5e-44fa-adbf-dd8e783f3844}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 8 Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 78.8204999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {12b257fc-5699-4129-b055-36ad60b34592}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 3c Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 208.947; ! Rendering Blue Value + +OS:Rendering:Color, + {84060026-cb34-4558-9975-d20233f3a9c2}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 4-6 Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 208.947; ! Rendering Blue Value + +OS:Rendering:Color, + {4d8ec304-f18e-4355-ad0a-14962f861b52}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 7 Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 208.947; ! Rendering Blue Value + +OS:Rendering:Color, + {7656c713-6331-42bd-9446-d9e0d6291682}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 8 Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 208.947; ! Rendering Blue Value + +OS:Rendering:Color, + {44fa9f76-5af4-4d45-938c-6a1e36b02fd1}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resA 3a-3b Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 208.947; ! Rendering Blue Value + +OS:Rendering:Color, + {5b46c887-c1c9-4dd4-80fe-aed1721c82dd}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resH 3a-3b Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 208.947; ! Rendering Blue Value + +OS:Rendering:Color, + {613e7502-cbd5-4212-bc61-c965f18f8695}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-ware 1-8 Color, ! Name + 200.9145, ! Rendering Red Value + 228.225, ! Rendering Green Value + 67.5749999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {47593f39-8b27-4779-a2e0-41af3b87e7e7}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Auditorium Color, ! Name + 227.46, ! Rendering Red Value + 173.604, ! Rendering Green Value + 129.54; ! Rendering Blue Value + +OS:Rendering:Color, + {32ef8108-2fee-4217-8aa9-6341e3553b22}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria Color, ! Name + 62.832, ! Rendering Red Value + 167.28, ! Rendering Green Value + 36.72; ! Rendering Blue Value + +OS:Rendering:Color, + {18e4fad2-c8b1-4c5e-bfbd-bec47cc28987}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Classroom Color, ! Name + 227.46, ! Rendering Red Value + 173.604, ! Rendering Green Value + 129.54; ! Rendering Blue Value + +OS:Rendering:Color, + {89be26a2-5c25-45fd-9018-22b3cd242b9b}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Corridor Color, ! Name + 167.28, ! Rendering Red Value + 36.72, ! Rendering Green Value + 36.7199999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {962de8a5-dfda-42e8-ae10-767060ff0727}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym Color, ! Name + 172.6248, ! Rendering Red Value + 227.46, ! Rendering Green Value + 129.54; ! Rendering Blue Value + +OS:Rendering:Color, + {e2696f27-0af6-4b95-b074-e88f3a3a6490}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Kitchen Color, ! Name + 87.72, ! Rendering Red Value + 218.28, ! Rendering Green Value + 120.36; ! Rendering Blue Value + +OS:Rendering:Color, + {b2f3cef9-047b-4aa1-86d5-acb32c88bd3c}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Library Color, ! Name + 36.72, ! Rendering Red Value + 167.28, ! Rendering Green Value + 154.74624; ! Rendering Blue Value + +OS:Rendering:Color, + {896aaf8f-33eb-49c8-a205-6c4daa490698}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Lobby Color, ! Name + 218.28, ! Rendering Red Value + 119.0544, ! Rendering Green Value + 87.72; ! Rendering Blue Value + +OS:Rendering:Color, + {b9aa2f20-fc0d-472e-8151-df5ce9e1b8d3}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Mechanical Color, ! Name + 36.72, ! Rendering Red Value + 57.6095999999999, ! Rendering Green Value + 167.28; ! Rendering Blue Value + +OS:Rendering:Color, + {0530a8b6-7e23-4145-bd31-6b649fc9d11c}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office Color, ! Name + 129.54, ! Rendering Red Value + 227.46, ! Rendering Green Value + 198.084; ! Rendering Blue Value + +OS:Rendering:Color, + {6f73ea8b-1a31-4246-a9f3-4f6b0c630d81}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Restroom Color, ! Name + 167.28, ! Rendering Red Value + 154.224, ! Rendering Green Value + 36.72; ! Rendering Blue Value + +OS:Rendering:Color, + {5ba0efe6-6ab9-4236-9afd-7dc2e63a5a9d}, ! Handle + Air Wall Color, ! Name + 255.0, ! Rendering Red Value + 0.0, ! Rendering Green Value + 0.0; ! Rendering Blue Value + +OS:Rendering:Color, + {1ea15f5f-b5b2-42e8-a49b-1905ed90ecea}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 1 Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 120.1356; ! Rendering Blue Value + +OS:Rendering:Color, + {55e2f197-2d3b-4660-810f-1496f534fd7a}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 104.6214; ! Rendering Blue Value + +OS:Rendering:Color, + {3b16a88b-7dcc-431e-bb93-56c33cc3aa1f}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2b Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 104.6214; ! Rendering Blue Value + +OS:Rendering:Color, + {36917857-c616-4166-80b0-65f5b5765603}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 73.593; ! Rendering Blue Value + +OS:Rendering:Color, + {b129c33b-8802-4959-a326-1581617d12ea}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAS Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 73.593; ! Rendering Blue Value + +OS:Rendering:Color, + {fdfa413d-b28d-4613-9d45-4b319cc1db5b}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAX Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 73.593; ! Rendering Blue Value + +OS:Rendering:Color, + {ff259fd3-df02-485c-bd72-fe46a3b2226a}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3c Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 73.593; ! Rendering Blue Value + +OS:Rendering:Color, + {477ce77d-fbc0-45e4-8d67-3ac03f9b80df}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 50.3216999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {9bd499c5-ceeb-4797-83f6-c89184a19088}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4b Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 50.3216999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {ce6473cd-8ae9-4a12-8f02-f456e5b7f2a0}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4c Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 50.3216999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {5598edc1-476a-40c3-8e5c-00ca46d81d4c}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 34.8074999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {8220a842-da79-4147-8b40-fd5210792e47}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5b Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 34.8074999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {d004aa0b-c5c2-4c0c-87c4-e8620bad2b24}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 34.8074999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {bf0a6d10-89b8-460c-b114-39a580667f57}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6b Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 34.8074999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {ef2a6cde-cc50-4811-a45f-c8b965e59350}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 7 Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 34.8074999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {432721f8-b1c5-4701-a1ad-5bb95e544da3}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 8 Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 34.8074999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {cf554a3e-9e5e-4fc5-9c96-069315c2d422}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 1 Color, ! Name + 122.7213, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 164.0925; ! Rendering Blue Value + +OS:Rendering:Color, + {dc9d2133-44ed-4d8e-88e4-a721214d3b02}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 2a Color, ! Name + 138.2355, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 164.0925; ! Rendering Blue Value + +OS:Rendering:Color, + {42e77966-533f-495a-b709-e0315e14e134}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 2b Color, ! Name + 138.2355, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 164.0925; ! Rendering Blue Value + +OS:Rendering:Color, + {8630f26b-8dc1-4e95-a2df-98e5ba119c28}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 158.9211; ! Rendering Blue Value + +OS:Rendering:Color, + {8c1b81ea-3c84-49db-9ed8-6a1f322e20ad}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAS Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 158.9211; ! Rendering Blue Value + +OS:Rendering:Color, + {8178e09e-1125-4ff7-be1a-df85b0d04725}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAX Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 158.9211; ! Rendering Blue Value + +OS:Rendering:Color, + {921bce36-0107-45c0-b84c-3654c577e1c8}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3c Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 158.9211; ! Rendering Blue Value + +OS:Rendering:Color, + {a5d20a29-7d22-4988-bb68-d1b6748c9142}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 4a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 135.6498; ! Rendering Blue Value + +OS:Rendering:Color, + {1bea94f5-f68d-4fe6-8ab2-3f77b4df5f7d}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 4b Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 135.6498; ! Rendering Blue Value + +OS:Rendering:Color, + {b6123c0e-9bf6-44ac-bbef-1dbb222e6477}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 4c Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 135.6498; ! Rendering Blue Value + +OS:Rendering:Color, + {1fedafc0-0210-4ab4-bc75-3afc67aa0800}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 5a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 120.1356; ! Rendering Blue Value + +OS:Rendering:Color, + {90d7a4ae-1f56-457d-95f2-442e404a6543}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 5b Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 120.1356; ! Rendering Blue Value + +OS:Rendering:Color, + {ccdf2358-ed8b-469f-a1c7-e5bc4e3a18d5}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 6a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 104.6214; ! Rendering Blue Value + +OS:Rendering:Color, + {e723f255-567a-4ef1-9b27-c3b9ec494d1f}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 6b Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 104.6214; ! Rendering Blue Value + +OS:Rendering:Color, + {ea9c9548-7da8-426c-897d-37bf3e7385f7}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 7 Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 96.8643; ! Rendering Blue Value + +OS:Rendering:Color, + {de92eb61-ff45-44e4-a2f4-f93b764afe48}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 8 Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 89.1072; ! Rendering Blue Value + +OS:Rendering:Color, + {492a4de4-e575-48ac-ade9-0cf4005adc5f}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 1 Color, ! Name + 172.9614, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {2327d734-1e67-4652-9cce-4100797c23a8}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 2a Color, ! Name + 189.669, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {6ef700fa-93c6-4511-8495-83e68d0f86f0}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 2b Color, ! Name + 189.669, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {f51635cd-cf60-43e9-ad78-127eb55a6663}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3a Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 211.9458; ! Rendering Blue Value + +OS:Rendering:Color, + {a91a7741-2c0a-4139-970c-e7db29d23e39}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAS Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 211.9458; ! Rendering Blue Value + +OS:Rendering:Color, + {623de263-c332-40bf-8821-350312e21d44}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAX Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 211.9458; ! Rendering Blue Value + +OS:Rendering:Color, + {2f15df8d-e087-423f-8f11-2a517ce5f91f}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3c Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 211.9458; ! Rendering Blue Value + +OS:Rendering:Color, + {286a205e-4076-41aa-9f76-c437f5698221}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 4a Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 186.8844; ! Rendering Blue Value + +OS:Rendering:Color, + {d85db1e1-8776-4660-896c-3889854d5f63}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 4b Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 186.8844; ! Rendering Blue Value + +OS:Rendering:Color, + {3a1cd9d6-47bd-4e7d-88c8-f12fc568049f}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 4c Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 186.8844; ! Rendering Blue Value + +OS:Rendering:Color, + {a227e192-0dd6-43b6-914f-3bcb9ead8e1b}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 5a Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 170.1768; ! Rendering Blue Value + +OS:Rendering:Color, + {312924a5-6bc0-4977-9ba5-793ff348086a}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 5b Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 170.1768; ! Rendering Blue Value + +OS:Rendering:Color, + {c294e7a9-7319-4460-95a5-efc70265dca1}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 6a Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 153.4692; ! Rendering Blue Value + +OS:Rendering:Color, + {088dfb31-b9b3-4beb-a55e-3e229b9e2f47}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 6b Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 153.4692; ! Rendering Blue Value + +OS:Rendering:Color, + {25127e3f-fb36-492a-b0fe-bfea9a34affa}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 7 Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 145.1154; ! Rendering Blue Value + +OS:Rendering:Color, + {b185668d-675a-4e4d-8f3a-b319993e8168}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 8 Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 136.7616; ! Rendering Blue Value + +OS:Rendering:Color, + {a77f891d-c3b6-48db-a433-d02266201ea8}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 1 Color, ! Name + 16.9575, ! Rendering Red Value + 49.7097, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {8fd52a38-0313-4364-9fd6-83cd6842396f}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 2a Color, ! Name + 16.9575, ! Rendering Red Value + 42.1515, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {f823ba96-165f-4004-b24c-5f2aeca04592}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 2b Color, ! Name + 16.9575, ! Rendering Red Value + 42.1515, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {f45a0471-ad9c-45f4-a3ce-5ffdb58599a0}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3a Color, ! Name + 16.9575, ! Rendering Red Value + 27.0351, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {fdc38ffe-1b31-4547-87d0-b085a85adc9d}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAS Color, ! Name + 16.9575, ! Rendering Red Value + 27.0351, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {46963e37-2a4a-4835-a943-75676cdb00e8}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAX Color, ! Name + 16.9575, ! Rendering Red Value + 27.0351, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {97934706-5055-4e12-80ac-2feb65c370a9}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3c Color, ! Name + 16.9575, ! Rendering Red Value + 27.0351, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {b1cb7df4-4ae2-4272-bf42-4ab46331fedd}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 4a Color, ! Name + 18.2171999999999, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {8c0507c6-8b4d-446d-a39e-c16e2275750f}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 4b Color, ! Name + 18.2171999999999, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {c1218ae6-7af3-406b-b274-6c54a2d4b239}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 4c-5a Color, ! Name + 18.2171999999999, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {99bec082-f288-4a60-97fd-2e830b9ed320}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 5b Color, ! Name + 25.7754, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {afa94f17-bb4d-408f-b89e-731e4dece400}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 6a Color, ! Name + 33.3336, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {067e7bc5-142d-4b8a-8dd8-c007c2801848}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 6b Color, ! Name + 33.3336, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {e5e2c780-290a-465f-abf7-2a13e3b97d04}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 7 Color, ! Name + 37.1127, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {38a8dc45-91cf-4c01-9a24-c255ccf39886}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 8 Color, ! Name + 40.8918, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {88c0de18-4d66-468e-b76c-b0982b6322e1}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 1 Color, ! Name + 28.56, ! Rendering Red Value + 83.7216, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {ba4c4a2e-850a-4887-87ea-61eebfc86e5f}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 2a Color, ! Name + 28.56, ! Rendering Red Value + 70.992, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {a10e56d2-1d33-49b0-b95d-7e3bcc8f45f4}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 2b Color, ! Name + 28.56, ! Rendering Red Value + 70.992, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {8b3342dd-28db-4061-ada2-8cae10565ee1}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3a Color, ! Name + 28.56, ! Rendering Red Value + 45.5328, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {58051a46-57b3-48bb-b526-f921db856fed}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAS Color, ! Name + 28.56, ! Rendering Red Value + 45.5328, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {d88fcdd3-0f59-44d6-b2fa-00046d5a8d38}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAX Color, ! Name + 28.56, ! Rendering Red Value + 45.5328, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {e0ba6565-e50d-43a0-96b6-78c5cf23d5db}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3c Color, ! Name + 28.56, ! Rendering Red Value + 45.5328, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {8b2f1991-e0d7-44d0-8dec-3570597f4e7c}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 4a Color, ! Name + 30.6815999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {fbd1ee56-14e5-4485-b677-c7d2d247989b}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 4b Color, ! Name + 30.6815999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {b5678963-69cc-41b8-8ee1-0290260b71d8}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 4c Color, ! Name + 30.6815999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {93a7b80d-a84f-475c-bd16-cd2d8d258211}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 5 Color, ! Name + 43.4111999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {62472710-0dde-454e-aca3-684fe5de042e}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 6a Color, ! Name + 56.1407999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {f5cbbd78-f617-452c-aa96-fb510b947923}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 6b Color, ! Name + 56.1407999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {ac666658-8748-4834-adee-570ae7ed5105}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 7 Color, ! Name + 62.5055999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {9e3dd5c1-aedd-4915-9fa3-55c120cc434d}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 8 Color, ! Name + 68.8703999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {8e9a9799-f57a-48a4-85aa-e9c309ab87ba}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 1 Color, ! Name + 40.1625, ! Rendering Red Value + 117.7335, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {63565275-942b-4ec9-88a3-980195ad26d2}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2a Color, ! Name + 40.1625, ! Rendering Red Value + 99.8325, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {50e0831a-201e-4970-889a-0d998a4d27be}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2b Color, ! Name + 40.1625, ! Rendering Red Value + 99.8325, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {041838ef-065b-4663-910d-a86a92242195}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3a Color, ! Name + 40.1625, ! Rendering Red Value + 64.0305000000001, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {60552f73-b51b-48f4-a124-f079b22ad5bc}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAS Color, ! Name + 40.1625, ! Rendering Red Value + 64.0305000000001, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {51793fc4-e175-4962-9516-b1752517722e}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAX Color, ! Name + 40.1625, ! Rendering Red Value + 64.0305000000001, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {19d94ea4-9fc8-435a-9338-dc78a5fe51a1}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3c Color, ! Name + 40.1625, ! Rendering Red Value + 64.0305000000001, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {a2959771-40ee-4c7a-8dcc-5e469376f24e}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4a Color, ! Name + 43.1459999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {663860ba-bb01-4a1a-a121-ac18a856fc03}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4b Color, ! Name + 43.1459999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {e3a90d46-a04d-45cd-8869-d2788354ed13}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4c Color, ! Name + 43.1459999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {5b4f2711-1f94-4967-8870-af44a15a6a47}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 5 Color, ! Name + 61.0469999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {3c24f67c-11ea-4f12-af43-bcf6634ca09d}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6a Color, ! Name + 78.9479999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {9c8c8844-769d-4530-a128-cb5c566c5eb5}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6b Color, ! Name + 78.9479999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {2b5a1981-e79b-474d-be36-9f565f91ff5c}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 7 Color, ! Name + 87.8984999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {fd610a61-d0f4-48e1-8a54-d512bb7ced2b}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 8 Color, ! Name + 96.8489999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {ec1d367a-f313-4c3f-a02d-1787cabe194f}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 1 Color, ! Name + 78.285, ! Rendering Red Value + 150.6846, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {a8ded15b-90fc-4cfb-aaf8-94565ed3c1f3}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2a Color, ! Name + 78.285, ! Rendering Red Value + 133.977, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {4803aae2-cd91-42eb-8ca9-310d638251dd}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2b Color, ! Name + 78.285, ! Rendering Red Value + 133.977, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {8e1a65e9-23fe-43b2-86e3-9d5e21d76019}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3a Color, ! Name + 78.285, ! Rendering Red Value + 100.5618, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {faa05fc0-ccf3-4a57-b000-696448aaea88}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAS Color, ! Name + 78.285, ! Rendering Red Value + 100.5618, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {9ed7a618-9d28-4553-afd0-18888b8b0397}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAX Color, ! Name + 78.285, ! Rendering Red Value + 100.5618, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {8b61a631-439f-4ebe-9c66-43bd0c83786d}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3c Color, ! Name + 78.285, ! Rendering Red Value + 100.5618, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {304bbdc5-2bb3-4fe2-9b5f-3191a15fca14}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4a Color, ! Name + 81.0695999999999, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {19a6138d-c045-45e4-b052-0850f9eef2ff}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4b Color, ! Name + 81.0695999999999, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {3e84c380-0ec9-4edc-94e6-6f3d936d7ed9}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4c Color, ! Name + 81.0695999999999, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {e47c0c57-0813-49da-bce9-37f96f5070c5}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 5 Color, ! Name + 97.7771999999999, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {03a77cda-01a3-424a-bdf2-6d56b1f47371}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6a Color, ! Name + 114.4848, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {6164f3f5-0277-4615-bfa3-05e357161ad8}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6b Color, ! Name + 114.4848, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {8dca0820-e1bc-4978-998a-10884e1ea615}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 7 Color, ! Name + 122.8386, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {16b6ea15-2cef-4b52-b5af-91bb90428e20}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 8 Color, ! Name + 131.1924, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {2ef32c95-309e-4816-8344-b4e7e72f6ddf}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 1-2 Color, ! Name + 193.8459, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {150dd112-56e6-47fe-8cad-a893fcef9107}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3a Color, ! Name + 143.7231, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {6dbced9e-5424-4033-9661-1714c27171ee}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3b LAS Color, ! Name + 143.7231, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {8bf35726-d751-47f8-b634-e25a7ef1d19b}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3b LAX Color, ! Name + 143.7231, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {cc58d3aa-0efb-40cd-84bb-63431a1a7648}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3c Color, ! Name + 143.7231, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {a1fd572d-ecc8-49f2-97d1-216ee9242091}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 4a Color, ! Name + 118.6617, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {acc8d852-042b-4336-9e90-7ddeb40023ab}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 4b Color, ! Name + 118.6617, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {51e1b71e-4630-44b8-a903-9102b249bc0c}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 4c Color, ! Name + 118.6617, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {f02e4868-6845-4619-9ba3-d5da736a7a73}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 5 Color, ! Name + 101.9541, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {9f646273-1ce4-4cb6-b9f7-bfe2972b569d}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 6 Color, ! Name + 85.2465, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {158646e6-47ef-4969-b255-03d44106b666}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 7 Color, ! Name + 78.285, ! Rendering Red Value + 217.515, ! Rendering Green Value + 79.6773; ! Rendering Blue Value + +OS:Rendering:Color, + {95429580-e4e8-45ed-ba08-c3dbb35a0fa1}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 8 Color, ! Name + 78.285, ! Rendering Red Value + 217.515, ! Rendering Green Value + 88.0311; ! Rendering Blue Value + +OS:Rendering:Color, + {faf763cc-89f2-42a7-89af-050976efebb3}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone alt-lrgoff hosp 1-8 Color, ! Name + 193.8459, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {e51684a2-606e-45db-b030-9e1f9c8b5c36}, ! Handle + CBECS 1980-2004 SecondarySchool Auditorium Color, ! Name + 218.28, ! Rendering Red Value + 174.522, ! Rendering Green Value + 138.72; ! Rendering Blue Value + +OS:Rendering:Color, + {e94cf327-6a11-469d-b495-9a54004ec4d2}, ! Handle + CBECS 1980-2004 SecondarySchool Cafeteria Color, ! Name + 70.176, ! Rendering Red Value + 155.04, ! Rendering Green Value + 48.96; ! Rendering Blue Value + +OS:Rendering:Color, + {818c60b5-9ca7-4cf8-b841-e71a3722758e}, ! Handle + CBECS 1980-2004 SecondarySchool Classroom Color, ! Name + 218.28, ! Rendering Red Value + 174.522, ! Rendering Green Value + 138.72; ! Rendering Blue Value + +OS:Rendering:Color, + {994f04b2-fec6-4ac6-9414-03ceda443f3b}, ! Handle + CBECS 1980-2004 SecondarySchool Corridor Color, ! Name + 155.04, ! Rendering Red Value + 48.96, ! Rendering Green Value + 48.9599999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {168f3736-95ea-492f-adb1-2bba299f0ad1}, ! Handle + CBECS 1980-2004 SecondarySchool Gym Color, ! Name + 173.7264, ! Rendering Red Value + 218.28, ! Rendering Green Value + 138.72; ! Rendering Blue Value + +OS:Rendering:Color, + {aeb15a70-e88c-4dfa-a41a-f7ce43c4d6a1}, ! Handle + CBECS 1980-2004 SecondarySchool Kitchen Color, ! Name + 99.96, ! Rendering Red Value + 206.04, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {d9e440e4-79a8-42d4-a5bf-5c6647f2f547}, ! Handle + CBECS 1980-2004 SecondarySchool Library Color, ! Name + 48.96, ! Rendering Red Value + 155.04, ! Rendering Green Value + 144.85632; ! Rendering Blue Value + +OS:Rendering:Color, + {8f9b3743-3d9a-4f30-af01-f4f41c1a95db}, ! Handle + CBECS 1980-2004 SecondarySchool Lobby Color, ! Name + 206.04, ! Rendering Red Value + 125.4192, ! Rendering Green Value + 99.96; ! Rendering Blue Value + +OS:Rendering:Color, + {397e12a1-202a-4679-ad63-67b17d2eb8d5}, ! Handle + CBECS 1980-2004 SecondarySchool Mechanical Color, ! Name + 48.96, ! Rendering Red Value + 65.9328, ! Rendering Green Value + 155.04; ! Rendering Blue Value + +OS:Rendering:Color, + {c10ba5b2-fe4f-4f48-a896-526d6019deb0}, ! Handle + CBECS 1980-2004 SecondarySchool Office Color, ! Name + 138.72, ! Rendering Red Value + 218.28, ! Rendering Green Value + 194.412; ! Rendering Blue Value + +OS:Rendering:Color, + {1aed42d9-b0b2-4051-b78e-2920c646eeda}, ! Handle + CBECS 1980-2004 SecondarySchool Restroom Color, ! Name + 155.04, ! Rendering Red Value + 144.432, ! Rendering Green Value + 48.96; ! Rendering Blue Value + +OS:Rendering:Color, + {acd816cb-8fd7-483d-beb8-9c0162b90509}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 1-3 Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 116.9532; ! Rendering Blue Value + +OS:Rendering:Color, + {923055e5-5cc0-45ff-b398-f1d087c3316a}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4a Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 57.8798999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {adef2ba0-7ea6-408a-a393-11dd9183e599}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4b Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 57.8798999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {4422f757-0b74-4c2f-b083-0582814bfd02}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4c Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 57.8798999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {7a8de390-c796-401c-bb0f-5c6531888e5f}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5a Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 44.7524999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {e5cbb53b-4ae1-4f81-8d4f-1f77c599a406}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5b Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 44.7524999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {497f403b-e575-4d24-9432-7078b4b19c22}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 6 Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 44.7524999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {4896d242-e6af-465d-88be-c1539325d2fd}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 7 Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 44.7524999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {7d97d0dc-29b9-4be5-ba0e-b5fea16ae416}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 8 Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 44.7524999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {44733fca-03ab-4774-9588-eb7366554d0f}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 1-3 Color, ! Name + 119.1411, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 154.1475; ! Rendering Blue Value + +OS:Rendering:Color, + {8e6540ea-dd12-4d1e-afc4-543e5a741004}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 4a Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 130.0806; ! Rendering Blue Value + +OS:Rendering:Color, + {f52cfe05-223e-482b-8a03-28e9a086485e}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 4b Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 130.0806; ! Rendering Blue Value + +OS:Rendering:Color, + {ea53efab-4239-4bd9-9bde-a9122aa104ba}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 4c Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 130.0806; ! Rendering Blue Value + +OS:Rendering:Color, + {adbc43e2-1255-423d-b85e-0ed4d1d7893d}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 5a Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 116.9532; ! Rendering Blue Value + +OS:Rendering:Color, + {d21f9553-53d1-4ec0-b085-53a9452c291e}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 5b Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 116.9532; ! Rendering Blue Value + +OS:Rendering:Color, + {205baf08-8d9f-4a61-a98a-a8a2b8b978bc}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 6 Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 103.8258; ! Rendering Blue Value + +OS:Rendering:Color, + {dcd46811-074b-44a3-bfef-4ea1e64d2c7c}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 7 Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 97.2621, ! Rendering Blue Value + ; ! Rendering Alpha Value + +OS:Rendering:Color, + {adf70ac3-816a-4aed-aad2-c04c4c9ab083}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 8 Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 90.6984; ! Rendering Blue Value + +OS:Rendering:Color, + {77b88734-e69e-46cc-9ee1-b175cda6e336}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 1-2 Color, ! Name + 21.8025, ! Rendering Red Value + 49.5159, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {f28e6547-4a70-4e4b-ba56-a7fa5b5a8407}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 3a Color, ! Name + 21.8025, ! Rendering Red Value + 30.3297, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {e2e4165f-df62-4bb4-96ff-b7b46530eda1}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 3b Color, ! Name + 21.8025, ! Rendering Red Value + 30.3297, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {93c014a1-e313-4432-827d-ca814f3d5494}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 3c Color, ! Name + 21.8025, ! Rendering Red Value + 30.3297, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {0b877208-9b7b-4262-b75c-d547a149e555}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 4a Color, ! Name + 22.8683999999999, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {1b520467-7699-4e24-a682-88847cd5f95a}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 4b Color, ! Name + 22.8683999999999, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {29e5d2df-d9d2-4e37-8a4c-6f49dbcf7796}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 4c Color, ! Name + 22.8683999999999, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {63fd6dbc-e3b3-4d3b-9057-3806faa3e261}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 5a Color, ! Name + 29.2638, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {7065de87-b88f-4703-8d36-eb633741532a}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 5b Color, ! Name + 29.2638, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {ccf9a487-1499-427c-9c58-c03ea13520f5}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 6 Color, ! Name + 35.6592, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {dfd364e1-e3ad-4419-8436-46b4dbc30a80}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 7 Color, ! Name + 38.8569, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {6cc160fc-eda5-454a-9fc8-248d3602877c}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 8 Color, ! Name + 42.0546, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {cdf43e8c-2707-4023-a505-a103b5c1122e}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 1-2 Color, ! Name + 36.72, ! Rendering Red Value + 83.3952, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {abf65fac-a143-4906-8870-b68e2b29853c}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 3a Color, ! Name + 36.72, ! Rendering Red Value + 51.0816, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {59430b4e-363e-4bae-96d8-a738d6abddda}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 3b Color, ! Name + 36.72, ! Rendering Red Value + 51.0816, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {0cbff5e1-c8b0-4b2a-992b-628dec59481d}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 3c Color, ! Name + 36.72, ! Rendering Red Value + 51.0816, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {844fd75e-e0b0-46ae-8ced-5335fc28af5d}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 4a Color, ! Name + 38.5151999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {d7634987-5fd8-4a42-9823-18432cbb72dc}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 4b Color, ! Name + 38.5151999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {01a70f65-484e-4f80-b73d-f9b756234486}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 4c Color, ! Name + 38.5151999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {82bf2d2f-f378-41a4-b223-2130a1114b27}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 5a Color, ! Name + 49.2863999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {1b992bb3-58f2-49ec-8b9d-d2d510a12242}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 5b Color, ! Name + 49.2863999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {93b3a8b8-1ed4-4327-b943-bf3b52676060}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 6 Color, ! Name + 60.0575999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {c97c10eb-f21e-4e62-9967-72b4ef407d86}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 7 Color, ! Name + 65.4431999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {fdcfe45e-c6ba-43b1-8a9f-690c6f3e3825}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 8 Color, ! Name + 70.8287999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {94bf8dd4-d14d-4dce-ac68-d72e4411e103}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 1-3b Color, ! Name + 51.6375, ! Rendering Red Value + 117.2745, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {55c209df-3b26-42d7-a30e-7421b4a7f912}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 3c Color, ! Name + 51.6375, ! Rendering Red Value + 71.8335, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {05353120-3742-43bb-b04c-a08dbcf670b8}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 4a Color, ! Name + 54.1619999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {cdc7c4ba-a5c5-4fd3-b783-cf84a130443d}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 4b Color, ! Name + 54.1619999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {5482f903-095c-420e-bdc1-5cf22a47d7f7}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 4c Color, ! Name + 54.1619999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {b04bf47c-c5de-4f59-a18a-f063cfe28957}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 5a Color, ! Name + 69.3089999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {849f1f45-ac9e-44aa-a8d1-c03e31cad58f}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 5b Color, ! Name + 69.3089999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {c83c7eab-0fe4-458d-8da2-85ed2e5446ed}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 6 Color, ! Name + 84.4559999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {c2dc01f1-5dc4-4910-8760-8a418f502eda}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 7 Color, ! Name + 92.0294999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {3833555c-94b3-4e59-8bc9-788dfe2ce1dd}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 8 Color, ! Name + 99.6029999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {183b6938-31e1-4693-8537-fc2fefff34d1}, ! Handle + CBECS Before-1980 ExtWindow ClimateZone 1-4 Color, ! Name + 186.7773, ! Rendering Red Value + 206.805, ! Rendering Green Value + 88.995; ! Rendering Blue Value + +OS:Rendering:Color, + {adfb8b7e-3ab3-48a4-a516-1f25ea768cdf}, ! Handle + CBECS Before-1980 ExtWindow ClimateZone 5-8 Color, ! Name + 109.0227, ! Rendering Red Value + 206.805, ! Rendering Green Value + 88.995; ! Rendering Blue Value + +OS:Rendering:Color, + {50875956-913e-4b66-bfa9-feb83313be9a}, ! Handle + CBECS Before-1980 ExtWindow ClimateZone alt-lrgoff hosp 1-8 Color, ! Name + 186.7773, ! Rendering Red Value + 206.805, ! Rendering Green Value + 88.995; ! Rendering Blue Value + +OS:Rendering:Color, + {8e17152b-17c2-41bb-8c70-380c948b70e2}, ! Handle + CBECS Before-1980 SecondarySchool Auditorium Color, ! Name + 209.1, ! Rendering Red Value + 175.44, ! Rendering Green Value + 147.9; ! Rendering Blue Value + +OS:Rendering:Color, + {adb2126b-c36a-4f44-b31f-13504fac1ea9}, ! Handle + CBECS Before-1980 SecondarySchool Cafeteria Color, ! Name + 77.52, ! Rendering Red Value + 142.8, ! Rendering Green Value + 61.2; ! Rendering Blue Value + +OS:Rendering:Color, + {5edc0f4c-2bf8-41ec-b75b-0ff3384b5b9e}, ! Handle + CBECS Before-1980 SecondarySchool Classroom Color, ! Name + 209.1, ! Rendering Red Value + 175.44, ! Rendering Green Value + 147.9; ! Rendering Blue Value + +OS:Rendering:Color, + {7fb498bc-7983-4d66-92c9-32ca045d1581}, ! Handle + CBECS Before-1980 SecondarySchool Corridor Color, ! Name + 142.8, ! Rendering Red Value + 61.2, ! Rendering Green Value + 61.2; ! Rendering Blue Value + +OS:Rendering:Color, + {fdb364ee-19f1-46c6-8795-1c66aeadf1ee}, ! Handle + CBECS Before-1980 SecondarySchool Gym Color, ! Name + 174.828, ! Rendering Red Value + 209.1, ! Rendering Green Value + 147.9; ! Rendering Blue Value + +OS:Rendering:Color, + {b001ae2c-0fc2-440e-8f24-d96b6e922b40}, ! Handle + CBECS Before-1980 SecondarySchool Kitchen Color, ! Name + 112.2, ! Rendering Red Value + 193.8, ! Rendering Green Value + 132.6; ! Rendering Blue Value + +OS:Rendering:Color, + {71433e31-c37c-4cb9-a279-6350f58aaac7}, ! Handle + CBECS Before-1980 SecondarySchool Library Color, ! Name + 61.2, ! Rendering Red Value + 142.8, ! Rendering Green Value + 134.9664; ! Rendering Blue Value + +OS:Rendering:Color, + {0271a677-4703-4d7b-86bc-784a97513a67}, ! Handle + CBECS Before-1980 SecondarySchool Lobby Color, ! Name + 193.8, ! Rendering Red Value + 131.784, ! Rendering Green Value + 112.2; ! Rendering Blue Value + +OS:Rendering:Color, + {756182f2-2730-49da-bd67-20ab662fe42d}, ! Handle + CBECS Before-1980 SecondarySchool Mechanical Color, ! Name + 61.2, ! Rendering Red Value + 74.256, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {6507c5bc-ea00-43f2-a447-d35047ab8fcf}, ! Handle + CBECS Before-1980 SecondarySchool Office Color, ! Name + 147.9, ! Rendering Red Value + 209.1, ! Rendering Green Value + 190.74; ! Rendering Blue Value + +OS:Rendering:Color, + {0d0e1f9b-f872-448e-8b86-aee00bf944c1}, ! Handle + CBECS Before-1980 SecondarySchool Restroom Color, ! Name + 142.8, ! Rendering Red Value + 134.64, ! Rendering Green Value + 61.2; ! Rendering Blue Value + +OS:Rendering:Color, + {d89efa51-07a1-4df8-8e39-5576e9589ffd}, ! Handle + Empty Space Type Color, ! Name + 128.0, ! Rendering Red Value + 128.0, ! Rendering Green Value + 128.0; ! Rendering Blue Value + +OS:Rendering:Color, + {b6e05acf-ec25-430e-abc3-192daddd0a6e}, ! Handle + Attic Color, ! Name + 255.0, ! Rendering Red Value + 51.0, ! Rendering Green Value + 173.4; ! Rendering Blue Value + +OS:RunPeriodControl:DaylightSavingTime, + {e7ff9fa0-5542-4564-ba33-dac72b1a3fd1}, ! Handle + 2nd Sunday in March, ! Start Date + 1st Sunday in November; ! End Date + +OS:RunPeriodControl:SpecialDays, + {816b362c-226b-406c-ac07-42f9fd8d3f17}, ! Handle + Christmas, ! Name + December 25, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {f531b8dd-870c-41dc-9d71-0ab9cdb056b7}, ! Handle + Columbus Day, ! Name + 2nd Monday in October, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {84a0ade2-ad56-459a-a847-acbe5e9196ef}, ! Handle + Independence Day, ! Name + July 4, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {a16b6cf0-018d-4638-ae85-a14d3ea0d9c0}, ! Handle + Labor Day, ! Name + 1st Monday in September, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {f10edb3f-d182-4dc7-be19-9e1e282b6133}, ! Handle + MLK Day, ! Name + 3rd Monday in January, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {9ba5db89-0c0e-477a-b64e-6881055eae43}, ! Handle + Memorial Day, ! Name + Last Monday in May, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {f14bf86a-6ea4-414d-80da-2dc72effb89f}, ! Handle + New Years Day, ! Name + January 1, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {438fd386-f33c-4f62-9695-e81108a20c10}, ! Handle + Presidents Day, ! Name + 3rd Monday in February, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {a2aada34-2709-47cc-8db5-cdf339c25c5e}, ! Handle + Thanksgiving, ! Name + 4th Thursday in November, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {a5572664-929e-4829-8dc4-b5aba5849e1b}, ! Handle + Veterans Day, ! Name + November 11, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:ScheduleTypeLimits, + {e814256c-c475-4870-9ed4-5feb769f3e3c}, ! Handle + Any Number; ! Name + +OS:ScheduleTypeLimits, + {2f99a0c4-c920-4392-ad4c-13f209cfc008}, ! Handle + Control Type, ! Name + 0, ! Lower Limit Value + 4, ! Upper Limit Value + DISCRETE; ! Numeric Type + +OS:ScheduleTypeLimits, + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Handle + Fraction, ! Name + 0, ! Lower Limit Value + 1, ! Upper Limit Value + CONTINUOUS; ! Numeric Type + +OS:ScheduleTypeLimits, + {002b458c-ec3f-4781-9901-cdaee085cee6}, ! Handle + On/Off, ! Name + 0, ! Lower Limit Value + 1, ! Upper Limit Value + DISCRETE; ! Numeric Type + +OS:SimulationControl, + {3cacd8b8-8500-4f87-85ed-71e7dad34073}, ! Handle + No, ! Do Zone Sizing Calculation + No, ! Do System Sizing Calculation + No, ! Do Plant Sizing Calculation + No, ! Run Simulation for Sizing Periods + Yes, ! Run Simulation for Weather File Run Periods + 0.040000000000000001, ! Loads Convergence Tolerance Value + 0.40000000000000002, ! Temperature Convergence Tolerance Value + FullExterior, ! Solar Distribution + 25; ! Maximum Number of Warmup Days + +OS:SpaceInfiltration:DesignFlowRate, + {2e8896af-9b57-41e9-bc6a-9cb98b1d98ce}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom Infil, ! Name + {f6c9890d-4fb2-4173-884a-8c6c03ed1670}, ! Space or SpaceType Name + , ! Schedule Name + AirChanges/Hour, ! Design Flow Rate Calculation Method + 0, ! Design Flow Rate + , ! Flow per Space Floor Area + , ! Flow per Exterior Surface Area + 0.135, ! Air Changes per Hour + , ! Constant Term Coefficient + , ! Temperature Term Coefficient + , ! Velocity Term Coefficient + ; ! Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {4544f042-9052-4fe2-86b9-d2556f96af38}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria Infil, ! Name + {e04862be-4937-4a7f-a795-7731f14e8f20}, ! Space or SpaceType Name + , ! Schedule Name + AirChanges/Hour, ! Design Flow Rate Calculation Method + 0, ! Design Flow Rate + , ! Flow per Space Floor Area + , ! Flow per Exterior Surface Area + 0.18, ! Air Changes per Hour + , ! Constant Term Coefficient + , ! Temperature Term Coefficient + , ! Velocity Term Coefficient + ; ! Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {bd053531-f8f5-45be-b605-d4e36b4e400a}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym Infil, ! Name + {bb037295-1692-4a23-a0e4-ab2cba7fa69c}, ! Space or SpaceType Name + , ! Schedule Name + AirChanges/Hour, ! Design Flow Rate Calculation Method + 0, ! Design Flow Rate + , ! Flow per Space Floor Area + , ! Flow per Exterior Surface Area + 0.18, ! Air Changes per Hour + , ! Constant Term Coefficient + , ! Temperature Term Coefficient + , ! Velocity Term Coefficient + ; ! Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {5efe0b86-eb6a-4408-9162-37bbddc2af9f}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office Infil, ! Name + {09d69842-de39-414d-b3e6-ca9da2c8a145}, ! Space or SpaceType Name + , ! Schedule Name + AirChanges/Hour, ! Design Flow Rate Calculation Method + 0, ! Design Flow Rate + , ! Flow per Space Floor Area + , ! Flow per Exterior Surface Area + 0.18, ! Air Changes per Hour + , ! Constant Term Coefficient + , ! Temperature Term Coefficient + , ! Velocity Term Coefficient + ; ! Velocity Squared Term Coefficient + +OS:SpaceType, + {f6c9890d-4fb2-4173-884a-8c6c03ed1670}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom, ! Name + , ! Default Construction Set Name + {8245cd5b-e772-4cbb-a1d4-90f7c2577033}, ! Default Schedule Set Name + {97a30e94-d4ec-4745-82d5-e727e925153f}, ! Group Rendering Name + {8f41be0a-67fe-45a0-bdde-3f0463e95a17}, ! Design Specification Outdoor Air Object Name + SecondarySchool, !- Standards Building Type + OpenOffice; !- Standards Space Type + +OS:SpaceType, + {e04862be-4937-4a7f-a795-7731f14e8f20}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria, ! Name + , ! Default Construction Set Name + {81ebe8af-f422-4d64-bc21-6ff750749ada}, ! Default Schedule Set Name + {32ef8108-2fee-4217-8aa9-6341e3553b22}, ! Group Rendering Name + {d0a4fc11-114a-44d7-8155-c5dc8354d466}, ! Design Specification Outdoor Air Object Name + SecondarySchool, !- Standards Building Type + Cafeteria; !- Standards Space Type + +OS:SpaceType, + {bb037295-1692-4a23-a0e4-ab2cba7fa69c}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym, ! Name + , ! Default Construction Set Name + {daf5fed8-5b65-440a-8c6e-c9630fbaf451}, ! Default Schedule Set Name + {962de8a5-dfda-42e8-ae10-767060ff0727}, ! Group Rendering Name + {789a59ab-8ea9-4790-b390-a62643f2669b}, ! Design Specification Outdoor Air Object Name + SecondarySchool, !- Standards Building Type + Gym; !- Standards Space Type + +OS:SpaceType, + {09d69842-de39-414d-b3e6-ca9da2c8a145}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office, ! Name + , ! Default Construction Set Name + {d07cd639-c4db-4910-a050-7256b9b7adea}, ! Default Schedule Set Name + {0530a8b6-7e23-4145-bd31-6b649fc9d11c}, ! Group Rendering Name + {b252ac88-1494-4791-bd30-cbbb600228c3}, ! Design Specification Outdoor Air Object Name + SecondarySchool, !- Standards Building Type + EnclosedOffice; !- Standards Space Type + +OS:ThermostatSetpoint:DualSetpoint, + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, ! Handle + SecondarySchool Thermostat, ! Name + {3181e006-ef48-47af-bd5d-8ab7033c0747}, ! Heating Setpoint Temperature Schedule Name + {500d03c4-b95d-4d8a-8475-8a5896387292}; ! Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {95827708-c99e-49dc-9b84-affc3a1448bf}, ! Handle + SecondarySchool Thermostat BathCorrMechKitchen, ! Name + {c7e91b09-2d50-4b42-ae55-58e351cc8597}, ! Heating Setpoint Temperature Schedule Name + {70c5f723-1f88-4985-a35b-59c0aa2f4246}; ! Cooling Setpoint Temperature Schedule Name + +OS:Timestep, + {7e269fd2-4f9c-452a-bdda-9dc5b4a3a746}, ! Handle + 4; ! Number of Timesteps per Hour + +OS:WindowMaterial:Gas, + {aa07cd9d-3f86-4662-af87-f8a7f0077477}, ! Handle + 000 Air 13mm, ! Name + Air, ! Gas Type + 0.012699999999999999; ! Thickness + +OS:WindowMaterial:Glazing, + {165e9f00-cc09-48c1-a4c2-8d6534c9a8c5}, ! Handle + 000 Clear 3mm, ! Name + SpectralAverage, ! Optical Data Type + , ! Window Glass Spectral Data Set Name + 0.0030000000000000001, ! Thickness + 0.83699999999999997, ! Solar Transmittance at Normal Incidence + 0.074999999999999997, ! Front Side Solar Reflectance at Normal Incidence + 0.074999999999999997, ! Back Side Solar Reflectance at Normal Incidence + 0.89800000000000002, ! Visible Transmittance at Normal Incidence + 0.081000000000000003, ! Front Side Visible Reflectance at Normal Incidence + 0.081000000000000003, ! Back Side Visible Reflectance at Normal Incidence + 0, ! Infrared Transmittance at Normal Incidence + 0.83999999999999997, ! Front Side Infrared Hemispherical Emissivity + 0.83999999999999997, ! Back Side Infrared Hemispherical Emissivity + 0.90000000000000002; ! Conductivity + +OS:WindowMaterial:Glazing, + {405af381-1ff5-45d2-9bca-871321956609}, ! Handle + Theoretical Glass [167], ! Name + SpectralAverage, ! Optical Data Type + , ! Window Glass Spectral Data Set Name + 0.0030000000000000001, ! Thickness + 0.2374, ! Solar Transmittance at Normal Incidence + 0.71260000000000001, ! Front Side Solar Reflectance at Normal Incidence + 0.71260000000000001, ! Back Side Solar Reflectance at Normal Incidence + 0.25119999999999998, ! Visible Transmittance at Normal Incidence + 0.69879999999999998, ! Front Side Visible Reflectance at Normal Incidence + 0.69879999999999998, ! Back Side Visible Reflectance at Normal Incidence + 0, ! Infrared Transmittance at Normal Incidence + 0.98499999999999999, ! Front Side Infrared Hemispherical Emissivity + 0.98499999999999999, ! Back Side Infrared Hemispherical Emissivity + 2.1073, ! Conductivity + 1, ! Dirt Correction Factor for Solar and Visible Transmittance + No; ! Solar Diffusing + +OS:WindowMaterial:Glazing, + {2cf9ce11-b74c-4b51-ab39-154dcc9d4771}, ! Handle + Theoretical Glass [197], ! Name + SpectralAverage, ! Optical Data Type + , ! Window Glass Spectral Data Set Name + 0.0030000000000000001, ! Thickness + 0.2349, ! Solar Transmittance at Normal Incidence + 0.71509999999999996, ! Front Side Solar Reflectance at Normal Incidence + 0.71509999999999996, ! Back Side Solar Reflectance at Normal Incidence + 0.25119999999999998, ! Visible Transmittance at Normal Incidence + 0.69879999999999998, ! Front Side Visible Reflectance at Normal Incidence + 0.69879999999999998, ! Back Side Visible Reflectance at Normal Incidence + 0, ! Infrared Transmittance at Normal Incidence + 0.90000000000000002, ! Front Side Infrared Hemispherical Emissivity + 0.90000000000000002, ! Back Side Infrared Hemispherical Emissivity + 0.041500000000000002, ! Conductivity + 1, ! Dirt Correction Factor for Solar and Visible Transmittance + No; ! Solar Diffusing + +OS:WindowMaterial:Glazing, + {00d2aeb6-20c5-4970-93a6-6d60353270c7}, ! Handle + Theoretical Glass [202], ! Name + SpectralAverage, ! Optical Data Type + , ! Window Glass Spectral Data Set Name + 0.0030000000000000001, ! Thickness + 0.23250000000000001, ! Solar Transmittance at Normal Incidence + 0.71750000000000003, ! Front Side Solar Reflectance at Normal Incidence + 0.71750000000000003, ! Back Side Solar Reflectance at Normal Incidence + 0.31919999999999998, ! Visible Transmittance at Normal Incidence + 0.63080000000000003, ! Front Side Visible Reflectance at Normal Incidence + 0.63080000000000003, ! Back Side Visible Reflectance at Normal Incidence + 0, ! Infrared Transmittance at Normal Incidence + 0.90000000000000002, ! Front Side Infrared Hemispherical Emissivity + 0.90000000000000002, ! Back Side Infrared Hemispherical Emissivity + 0.019199999999999998, ! Conductivity + 1, ! Dirt Correction Factor for Solar and Visible Transmittance + No; ! Solar Diffusing + +OS:WindowMaterial:Glazing, + {6e5b7a44-b8f1-463f-b75f-62bc6a4c0ede}, ! Handle + Theoretical Glass [207], ! Name + SpectralAverage, ! Optical Data Type + , ! Window Glass Spectral Data Set Name + 0.0030000000000000001, ! Thickness + 0.33110000000000001, ! Solar Transmittance at Normal Incidence + 0.61890000000000001, ! Front Side Solar Reflectance at Normal Incidence + 0.61890000000000001, ! Back Side Solar Reflectance at Normal Incidence + 0.44, ! Visible Transmittance at Normal Incidence + 0.51000000000000001, ! Front Side Visible Reflectance at Normal Incidence + 0.51000000000000001, ! Back Side Visible Reflectance at Normal Incidence + 0, ! Infrared Transmittance at Normal Incidence + 0.90000000000000002, ! Front Side Infrared Hemispherical Emissivity + 0.90000000000000002, ! Back Side Infrared Hemispherical Emissivity + 0.013299999999999999, ! Conductivity + 1, ! Dirt Correction Factor for Solar and Visible Transmittance + No; ! Solar Diffusing + +OS:WindowMaterial:Glazing, + {70760773-5fc1-4d08-8eef-ae2fbabb3d32}, ! Handle + Theoretical Glass [216], ! Name + SpectralAverage, ! Optical Data Type + , ! Window Glass Spectral Data Set Name + 0.0030000000000000001, ! Thickness + 0.38009999999999999, ! Solar Transmittance at Normal Incidence + 0.56989999999999996, ! Front Side Solar Reflectance at Normal Incidence + 0.56989999999999996, ! Back Side Solar Reflectance at Normal Incidence + 0.50790000000000002, ! Visible Transmittance at Normal Incidence + 0.44209999999999999, ! Front Side Visible Reflectance at Normal Incidence + 0.44209999999999999, ! Back Side Visible Reflectance at Normal Incidence + 0, ! Infrared Transmittance at Normal Incidence + 0.90000000000000002, ! Front Side Infrared Hemispherical Emissivity + 0.90000000000000002, ! Back Side Infrared Hemispherical Emissivity + 0.013299999999999999, ! Conductivity + 1, ! Dirt Correction Factor for Solar and Visible Transmittance + No; ! Solar Diffusing + +OS:WindowMaterial:Glazing, + {d3377fb1-b38b-4635-aa5f-f18ed80acf54}, ! Handle + Theoretical Glass [221], ! Name + SpectralAverage, ! Optical Data Type + , ! Window Glass Spectral Data Set Name + 0.0030000000000000001, ! Thickness + 0.42959999999999998, ! Solar Transmittance at Normal Incidence + 0.52039999999999997, ! Front Side Solar Reflectance at Normal Incidence + 0.52039999999999997, ! Back Side Solar Reflectance at Normal Incidence + 0.45029999999999998, ! Visible Transmittance at Normal Incidence + 0.49969999999999998, ! Front Side Visible Reflectance at Normal Incidence + 0.49969999999999998, ! Back Side Visible Reflectance at Normal Incidence + 0, ! Infrared Transmittance at Normal Incidence + 0.90000000000000002, ! Front Side Infrared Hemispherical Emissivity + 0.90000000000000002, ! Back Side Infrared Hemispherical Emissivity + 0.0088999999999999999, ! Conductivity + 1, ! Dirt Correction Factor for Solar and Visible Transmittance + No; ! Solar Diffusing + +OS:WindowMaterial:SimpleGlazingSystem, + {7223656d-4d0c-438a-95c5-483f090f2844}, ! Handle + Fixed Window 2.62/0.30/0.21, ! Name + 2.6118800000000002, ! U-Factor + 0.29999999999999999, ! Solar Heat Gain Coefficient + 0.20999999999999999; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {7b6a48a2-9018-430e-89fb-9c974d092c6d}, ! Handle + Fixed Window 2.67/0.30/0.21, ! Name + 2.66866, ! U-Factor + 0.48999999999999999, ! Solar Heat Gain Coefficient + 0.38; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {9ba65076-61e9-4056-b655-3979ff36305c}, ! Handle + Fixed Window 2.96/0.39/0.31, ! Name + 2.9525600000000001, ! U-Factor + 0.39000000000000001, ! Solar Heat Gain Coefficient + 0.31; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {871fe623-8418-4785-bf65-b6c3e9bdfc1d}, ! Handle + Fixed Window 2.96/0.49/0.41, ! Name + 2.9525600000000001, ! U-Factor + 0.48999999999999999, ! Solar Heat Gain Coefficient + 0.40999999999999998; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {d5165f0e-1b13-471a-a041-2662ffed0297}, ! Handle + Fixed Window 2.96/0.62/0.54, ! Name + 2.9525600000000001, ! U-Factor + 0.61499999999999999, ! Solar Heat Gain Coefficient + 0.54000000000000004; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {e3691bc1-c5a8-448a-927c-40b532235149}, ! Handle + Fixed Window 2.96/0.7/0.63, ! Name + 2.9525600000000001, ! U-Factor + 0.69999999999999996, ! Solar Heat Gain Coefficient + 0.63; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {e0fc2e96-467e-44c2-bbc6-e0e0d6f74bdc}, ! Handle + Fixed Window 3.24/0.25/0.16, ! Name + 3.2364600000000001, ! U-Factor + 0.25, ! Solar Heat Gain Coefficient + 0.16; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {704ddf45-6d9d-4d66-82bf-948789672bc7}, ! Handle + Fixed Window 3.24/0.39/0.31, ! Name + 3.2364600000000001, ! U-Factor + 0.39000000000000001, ! Solar Heat Gain Coefficient + 0.31; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {2369133b-4af8-4174-a00e-a29539b38735}, ! Handle + Fixed Window 3.24/0.49/0.41, ! Name + 3.2364600000000001, ! U-Factor + 0.48999999999999999, ! Solar Heat Gain Coefficient + 0.40999999999999998; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {b2b12a2f-6927-4174-a902-2b9f4335e392}, ! Handle + Fixed Window 3.35/0.36/0.27, ! Name + 3.3500200000000002, ! U-Factor + 0.35999999999999999, ! Solar Heat Gain Coefficient + 0.27000000000000002; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {3d29d6fa-2364-448b-9043-caf2dc3a1986}, ! Handle + Fixed Window 3.35/0.39/0.31, ! Name + 3.3500200000000002, ! U-Factor + 0.39000000000000001, ! Solar Heat Gain Coefficient + 0.31; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {6833b0b5-6a33-4f59-89c8-600daa3befcf}, ! Handle + Fixed Window 3.53/0.41/0.32, ! Name + 3.5203600000000002, ! U-Factor + 0.40999999999999998, ! Solar Heat Gain Coefficient + 0.32000000000000001; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {715e2722-3fbf-4b30-b154-0fde7f265699}, ! Handle + Fixed Window 3.81/0.3/.21, ! Name + 2.9525600000000001, ! U-Factor + 0.29999999999999999, ! Solar Heat Gain Coefficient + 0.20999999999999999; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {dc8a6b59-d6c6-422d-942a-229e57751214}, ! Handle + Fixed Window 3.81/0.39/0.27, ! Name + 2.9525600000000001, ! U-Factor + 0.39000000000000001, ! Solar Heat Gain Coefficient + 0.27000000000000002; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {e4e66954-ddba-476c-a5d2-9cbb2c32ebb5}, ! Handle + Fixed Window 3.81/0.49/0.38, ! Name + 2.9525600000000001, ! U-Factor + 0.48999999999999999, ! Solar Heat Gain Coefficient + 0.38; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {1c2a0b13-5f9c-4d24-a833-7f17cf3fa9b8}, ! Handle + Fixed Window 4.09/0.26/0.13, ! Name + 4.0881600000000002, ! U-Factor + 0.25, ! Solar Heat Gain Coefficient + 0.13; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {6cd6c08c-958d-474f-89d6-2e912faaed3b}, ! Handle + Fixed Window 4.09/0.36/0.23, ! Name + 4.0881600000000002, ! U-Factor + 0.35999999999999999, ! Solar Heat Gain Coefficient + 0.23000000000000001; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {2e7e90d4-05f5-4dc0-b6a7-d3ebb3a6e955}, ! Handle + Fixed Window 4.09/0.39/0.25, ! Name + 4.0881600000000002, ! U-Factor + 0.39000000000000001, ! Solar Heat Gain Coefficient + 0.25; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {792bbea6-984c-4239-a3a1-502aeb832ac7}, ! Handle + Fixed Window 5.84/0.25/0.11, ! Name + 6.9271599999999998, ! U-Factor + 0.25, ! Solar Heat Gain Coefficient + 0.11; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {54ad2b47-0435-473d-9508-37d1eb940eb5}, ! Handle + Fixed Window 5.84/0.39/0.22, ! Name + 6.9271599999999998, ! U-Factor + 0.39000000000000001, ! Solar Heat Gain Coefficient + 0.22; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {05610e04-f6ad-4d03-9915-9ef06204b77b}, ! Handle + Fixed Window 5.84/0.44/0.27, ! Name + 6.9271599999999998, ! U-Factor + 0.44, ! Solar Heat Gain Coefficient + 0.27000000000000002; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {b856edfa-5cae-4207-9bc9-a2cb8c254596}, ! Handle + Fixed Window 5.84/0.54/0.38, ! Name + 6.9271599999999998, ! U-Factor + 0.54000000000000004, ! Solar Heat Gain Coefficient + 0.38; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {ee541d06-6fcb-44a7-b092-f03bae0a8b53}, ! Handle + Fixed Window 5.84/0.61/0.47, ! Name + 6.9271599999999998, ! U-Factor + 0.60999999999999999, ! Solar Heat Gain Coefficient + 0.46999999999999997; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {5bf309c9-492b-42b2-9717-17726104670a}, ! Handle + Fixed Window 5.84/0.70/0.60, ! Name + 6.9271599999999998, ! U-Factor + 0.69999999999999996, ! Solar Heat Gain Coefficient + 0.59999999999999998; ! Visible Transmittance + +OS:Schedule:Ruleset, + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Handle + SecondarySchool Bldg Occ, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {1a0d77be-cf56-46f6-b991-b62f33f583f1}, ! Default Day Schedule Name + {53b34f18-a4a5-4556-b80c-2efda278e9d8}, ! Summer Design Day Schedule Name + {6f410bfa-3955-4fb0-bf72-39eb1b6f869c}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {1a0d77be-cf56-46f6-b991-b62f33f583f1}, ! Handle + SecondarySchool Bldg Occ Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 16, !- Hour 2 + 0, !- Minute 2 + 0.7, !- Value Until Time 2 + 21, !- Hour 3 + 0, !- Minute 3 + 0.15, !- Value Until Time 3 + 24, !- Hour 4 + 0, !- Minute 4 + 0; !- Value Until Time 4 + +OS:Schedule:Rule, + {774a1a0c-a846-48a9-b487-1cae16d3bdea}, ! Handle + SecondarySchool Bldg Occ Rule 5, ! Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Schedule Ruleset Name + 4, ! Rule Order + {045e1fd3-245d-4ffd-936e-a392d15d2f1b}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {045e1fd3-245d-4ffd-936e-a392d15d2f1b}, ! Handle + SecondarySchool Bldg Occ Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {fd01867b-cedf-471f-97dd-f08518ccdcf8}, ! Handle + SecondarySchool Bldg Occ Rule 4, ! Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Schedule Ruleset Name + 3, ! Rule Order + {dc4e0a3b-ac97-4ecd-a804-910dfbb48b30}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {dc4e0a3b-ac97-4ecd-a804-910dfbb48b30}, ! Handle + SecondarySchool Bldg Occ Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0; ! Value Until Time 3 + +OS:Schedule:Rule, + {44e2b7bb-54de-4372-b246-6699a60ba0f1}, ! Handle + SecondarySchool Bldg Occ Rule 3, ! Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Schedule Ruleset Name + 2, ! Rule Order + {1074323a-cecf-4e1c-8402-4bb852f92050}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {1074323a-cecf-4e1c-8402-4bb852f92050}, ! Handle + SecondarySchool Bldg Occ Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {fd18ae3e-22e9-4698-a80b-e657ade7f060}, ! Handle + SecondarySchool Bldg Occ Rule 2, ! Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Schedule Ruleset Name + 1, ! Rule Order + {d5cc2e2f-cb4f-47ff-ba4b-918a87c395bc}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {d5cc2e2f-cb4f-47ff-ba4b-918a87c395bc}, ! Handle + SecondarySchool Bldg Occ Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 16, ! Hour 2 + 0, ! Minute 2 + 0.69999999999999996, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.14999999999999999, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Day, + {53b34f18-a4a5-4556-b80c-2efda278e9d8}, ! Handle + SecondarySchool Bldg Occ Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 16, ! Hour 2 + 0, ! Minute 2 + 0.69999999999999996, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.14999999999999999, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {99a1c4aa-bfc3-45a4-8520-4301314eaed5}, ! Handle + SecondarySchool Bldg Occ Rule 1, ! Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Schedule Ruleset Name + 0, ! Rule Order + {3dad8895-9316-467f-b829-2b8de3b1df75}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {3dad8895-9316-467f-b829-2b8de3b1df75}, ! Handle + SecondarySchool Bldg Occ Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {6f410bfa-3955-4fb0-bf72-39eb1b6f869c}, ! Handle + SecondarySchool Bldg Occ Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {2cc4bdc3-30af-4422-870b-17d72c867dec}, ! Handle + SecondarySchool Extend Bldg Occ, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {abf1caed-dae1-4033-9821-18337ea64401}, ! Default Day Schedule Name + {70026362-f41a-4248-8166-d82b97ae1c34}, ! Summer Design Day Schedule Name + {e5005ae6-3a61-4757-ad76-128b8328e0c9}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {abf1caed-dae1-4033-9821-18337ea64401}, ! Handle + SecondarySchool Extend Bldg Occ Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 16, !- Hour 2 + 0, !- Minute 2 + 0.7, !- Value Until Time 2 + 21, !- Hour 3 + 0, !- Minute 3 + 0.7, !- Value Until Time 3 + 24, !- Hour 4 + 0, !- Minute 4 + 0; !- Value Until Time 4 + +OS:Schedule:Rule, + {682d16ae-b9d5-450f-a017-a072da2e7ba9}, ! Handle + SecondarySchool Extend Bldg Occ Rule 5, ! Name + {2cc4bdc3-30af-4422-870b-17d72c867dec}, ! Schedule Ruleset Name + 4, ! Rule Order + {d0a268fa-9a6c-4033-9445-0bb82383743b}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {d0a268fa-9a6c-4033-9445-0bb82383743b}, ! Handle + SecondarySchool Extend Bldg Occ Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {7a5ae132-c854-4b1d-9fc7-220321a1c1da}, ! Handle + SecondarySchool Extend Bldg Occ Rule 4, ! Name + {2cc4bdc3-30af-4422-870b-17d72c867dec}, ! Schedule Ruleset Name + 3, ! Rule Order + {eb0e7e42-4c5e-4e9d-88dc-9186a20dab9e}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {eb0e7e42-4c5e-4e9d-88dc-9186a20dab9e}, ! Handle + SecondarySchool Extend Bldg Occ Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.5, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {76a3ee4a-ff81-4292-a903-6e087bf603b6}, ! Handle + SecondarySchool Extend Bldg Occ Rule 3, ! Name + {2cc4bdc3-30af-4422-870b-17d72c867dec}, ! Schedule Ruleset Name + 2, ! Rule Order + {2f6b0c61-f718-47c4-ac51-81be733f3a10}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {2f6b0c61-f718-47c4-ac51-81be733f3a10}, ! Handle + SecondarySchool Extend Bldg Occ Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {d199e79e-0a52-4539-abba-c9f301f68d6b}, ! Handle + SecondarySchool Extend Bldg Occ Rule 2, ! Name + {2cc4bdc3-30af-4422-870b-17d72c867dec}, ! Schedule Ruleset Name + 1, ! Rule Order + {8f7a33fd-fbdb-4370-a41d-9516e39bd370}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {8f7a33fd-fbdb-4370-a41d-9516e39bd370}, ! Handle + SecondarySchool Extend Bldg Occ Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.69999999999999996, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.69999999999999996, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Day, + {70026362-f41a-4248-8166-d82b97ae1c34}, ! Handle + SecondarySchool Extend Bldg Occ Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.69999999999999996, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.69999999999999996, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {87d6319b-d379-4e5c-a7bf-efb7d4913a27}, ! Handle + SecondarySchool Extend Bldg Occ Rule 1, ! Name + {2cc4bdc3-30af-4422-870b-17d72c867dec}, ! Schedule Ruleset Name + 0, ! Rule Order + {e4233bfa-457c-4342-9daf-df74d44f67a2}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {e4233bfa-457c-4342-9daf-df74d44f67a2}, ! Handle + SecondarySchool Extend Bldg Occ Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {e5005ae6-3a61-4757-ad76-128b8328e0c9}, ! Handle + SecondarySchool Extend Bldg Occ Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {500d03c4-b95d-4d8a-8475-8a5896387292}, ! Handle + SecondarySchool ClgSetp, ! Name + {82c61da3-ef14-40d1-9843-cc13be933d4a}, ! Schedule Type Limits Name + {f1cfa39a-eb9f-4c87-a704-06995b0104b4}, ! Default Day Schedule Name + {463c52dc-2388-426d-b05c-19b7101409fa}, ! Summer Design Day Schedule Name + {f936cfa1-5058-4568-af6e-dd1111d474e8}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {f1cfa39a-eb9f-4c87-a704-06995b0104b4}, ! Handle + SecondarySchool ClgSetp Default Schedule, ! Name + {82c61da3-ef14-40d1-9843-cc13be933d4a}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 27, !- Value Until Time 1 + 21, !- Hour 2 + 0, !- Minute 2 + 24, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 27; !- Value Until Time 3 + +OS:Schedule:Rule, + {37e57dc8-0bbc-48e0-8c2f-e422a1452b9f}, ! Handle + SecondarySchool ClgSetp Rule 2, ! Name + {500d03c4-b95d-4d8a-8475-8a5896387292}, ! Schedule Ruleset Name + 1, ! Rule Order + {23da0ecd-7b0f-4232-9f72-986d9038d729}, ! Day Schedule Name + Yes, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {23da0ecd-7b0f-4232-9f72-986d9038d729}, ! Handle + SecondarySchool ClgSetp Rule 2 Day Schedule, ! Name + {82c61da3-ef14-40d1-9843-cc13be933d4a}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 27, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 27; ! Value Until Time 3 + +OS:Schedule:Day, + {463c52dc-2388-426d-b05c-19b7101409fa}, ! Handle + SecondarySchool ClgSetp Summer Design Day, ! Name + {82c61da3-ef14-40d1-9843-cc13be933d4a}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 24; ! Value Until Time 1 + +OS:Schedule:Day, + {f936cfa1-5058-4568-af6e-dd1111d474e8}, ! Handle + SecondarySchool ClgSetp Winter Design Day, ! Name + {82c61da3-ef14-40d1-9843-cc13be933d4a}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 27; ! Value Until Time 1 + +OS:Schedule:Rule, + {e0249c62-9017-47e5-84a7-9b00326af09c}, ! Handle + SecondarySchool ClgSetp Rule 1, ! Name + {500d03c4-b95d-4d8a-8475-8a5896387292}, ! Schedule Ruleset Name + 0, ! Rule Order + {19ca8d02-8d4c-48c0-a01e-b1affcce072a}, ! Day Schedule Name + Yes, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {19ca8d02-8d4c-48c0-a01e-b1affcce072a}, ! Handle + SecondarySchool ClgSetp Rule 1 Day Schedule, ! Name + {82c61da3-ef14-40d1-9843-cc13be933d4a}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 27, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 27; ! Value Until Time 3 + +OS:Schedule:Ruleset, + {aa4b1b53-2f75-43f9-9985-d7c52d8dca54}, ! Handle + SecondarySchool Work Eff, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {fb54cf93-6b97-4847-8921-86a421cd81b1}, ! Default Day Schedule Name + {677b3172-7587-43d3-9883-e075bb9614b3}, ! Summer Design Day Schedule Name + {2c48e0fe-b0e4-4842-a8cf-c30ac67a22e5}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {fb54cf93-6b97-4847-8921-86a421cd81b1}, ! Handle + SecondarySchool Work Eff Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {2c48e0fe-b0e4-4842-a8cf-c30ac67a22e5}, ! Handle + SecondarySchool Work Eff Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {677b3172-7587-43d3-9883-e075bb9614b3}, ! Handle + SecondarySchool Work Eff Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {70c5f723-1f88-4985-a35b-59c0aa2f4246}, ! Handle + SecondarySchool ClgSetp BathCorrMechKitchen, ! Name + {6356463a-d5c6-47ec-8686-b8e89dddfd62}, ! Schedule Type Limits Name + {f4859d7c-338f-49fd-83b1-51b620a80fc0}, ! Default Day Schedule Name + {9d4ac5bf-9af9-4491-b928-21ebfd9f26ae}, ! Summer Design Day Schedule Name + {684ccb98-0868-49df-9765-08b824809bdf}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {f4859d7c-338f-49fd-83b1-51b620a80fc0}, ! Handle + SecondarySchool ClgSetp BathCorrMechKitchen Default Schedule, ! Name + {6356463a-d5c6-47ec-8686-b8e89dddfd62}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 27; !- Value Until Time 1 + +OS:Schedule:Day, + {9d4ac5bf-9af9-4491-b928-21ebfd9f26ae}, ! Handle + SecondarySchool ClgSetp BathCorrMechKitchen Summer Design Day, ! Name + {6356463a-d5c6-47ec-8686-b8e89dddfd62}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 27, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 27; ! Value Until Time 3 + +OS:Schedule:Day, + {684ccb98-0868-49df-9765-08b824809bdf}, ! Handle + SecondarySchool ClgSetp BathCorrMechKitchen Winter Design Day, ! Name + {6356463a-d5c6-47ec-8686-b8e89dddfd62}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 27; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {3181e006-ef48-47af-bd5d-8ab7033c0747}, ! Handle + SecondarySchool HtgSetp, ! Name + {5482b999-ffb1-4bc3-b47e-f81db0418b83}, ! Schedule Type Limits Name + {94b73220-28e4-4e18-b0af-592e83e71f2f}, ! Default Day Schedule Name + {2ad00ff1-176f-4019-89aa-df84e836c659}, ! Summer Design Day Schedule Name + {c67102f1-fafc-46ae-852c-c3f8c5d1944d}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {94b73220-28e4-4e18-b0af-592e83e71f2f}, ! Handle + SecondarySchool HtgSetp Default Schedule, ! Name + {5482b999-ffb1-4bc3-b47e-f81db0418b83}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 16, !- Value Until Time 1 + 21, !- Hour 2 + 0, !- Minute 2 + 21, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 16; !- Value Until Time 3 + +OS:Schedule:Rule, + {08186eee-2645-4ab1-8e64-cf624b5a2ea9}, ! Handle + SecondarySchool HtgSetp Rule 2, ! Name + {3181e006-ef48-47af-bd5d-8ab7033c0747}, ! Schedule Ruleset Name + 1, ! Rule Order + {334b6144-c06e-4abd-a4f1-e506adf065a8}, ! Day Schedule Name + Yes, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {334b6144-c06e-4abd-a4f1-e506adf065a8}, ! Handle + SecondarySchool HtgSetp Rule 2 Day Schedule, ! Name + {5482b999-ffb1-4bc3-b47e-f81db0418b83}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 16, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 21, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 16; ! Value Until Time 3 + +OS:Schedule:Day, + {c67102f1-fafc-46ae-852c-c3f8c5d1944d}, ! Handle + SecondarySchool HtgSetp Winter Design Day, ! Name + {5482b999-ffb1-4bc3-b47e-f81db0418b83}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 21; ! Value Until Time 1 + +OS:Schedule:Day, + {2ad00ff1-176f-4019-89aa-df84e836c659}, ! Handle + SecondarySchool HtgSetp Summer Design Day, ! Name + {5482b999-ffb1-4bc3-b47e-f81db0418b83}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 16; ! Value Until Time 1 + +OS:Schedule:Rule, + {910abfe3-64d4-4657-a243-4fc625be5852}, ! Handle + SecondarySchool HtgSetp Rule 1, ! Name + {3181e006-ef48-47af-bd5d-8ab7033c0747}, ! Schedule Ruleset Name + 0, ! Rule Order + {bd37b519-97b4-440a-a739-199c7f17951c}, ! Day Schedule Name + Yes, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {bd37b519-97b4-440a-a739-199c7f17951c}, ! Handle + SecondarySchool HtgSetp Rule 1 Day Schedule, ! Name + {5482b999-ffb1-4bc3-b47e-f81db0418b83}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 16, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 21, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 16; ! Value Until Time 3 + +OS:Schedule:Ruleset, + {6050b866-b11c-4448-b39d-3e11bbe44c31}, ! Handle + SecondarySchool Kitchen Gas, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {3f1e54c8-2a8c-4361-a224-c15b2147ac36}, ! Default Day Schedule Name + {5bafc395-ec53-4eeb-8a52-768ca2b53cb9}, ! Summer Design Day Schedule Name + {d5cb4250-277f-4d3b-8a20-9d9e818f995e}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {3f1e54c8-2a8c-4361-a224-c15b2147ac36}, ! Handle + SecondarySchool Kitchen Gas Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.02, !- Value Until Time 1 + 10, !- Hour 2 + 0, !- Minute 2 + 0.15, !- Value Until Time 2 + 13, !- Hour 3 + 0, !- Minute 3 + 0.2, !- Value Until Time 3 + 15, !- Hour 4 + 0, !- Minute 4 + 0.1, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0.02; !- Value Until Time 5 + +OS:Schedule:Rule, + {ec5f23df-7789-4b87-8bff-aca225137e46}, ! Handle + SecondarySchool Kitchen Gas Rule 5, ! Name + {6050b866-b11c-4448-b39d-3e11bbe44c31}, ! Schedule Ruleset Name + 4, ! Rule Order + {b332fedc-a6fb-409c-a5d3-e0556d0e0e43}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {b332fedc-a6fb-409c-a5d3-e0556d0e0e43}, ! Handle + SecondarySchool Kitchen Gas Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.02; ! Value Until Time 1 + +OS:Schedule:Rule, + {ac5db8d2-69ac-4301-80e9-ac8f9710b227}, ! Handle + SecondarySchool Kitchen Gas Rule 4, ! Name + {6050b866-b11c-4448-b39d-3e11bbe44c31}, ! Schedule Ruleset Name + 3, ! Rule Order + {11a02490-4086-4064-9a11-4f2d3b9b100e}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {11a02490-4086-4064-9a11-4f2d3b9b100e}, ! Handle + SecondarySchool Kitchen Gas Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.02, ! Value Until Time 1 + 10, ! Hour 2 + 0, ! Minute 2 + 0.10000000000000001, ! Value Until Time 2 + 13, ! Hour 3 + 0, ! Minute 3 + 0.14999999999999999, ! Value Until Time 3 + 15, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.02; ! Value Until Time 5 + +OS:Schedule:Rule, + {5b13f4d7-b6f1-462f-b516-730db4d9f046}, ! Handle + SecondarySchool Kitchen Gas Rule 3, ! Name + {6050b866-b11c-4448-b39d-3e11bbe44c31}, ! Schedule Ruleset Name + 2, ! Rule Order + {91e30fab-9f28-4a42-ac0f-f03d78defd2a}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {91e30fab-9f28-4a42-ac0f-f03d78defd2a}, ! Handle + SecondarySchool Kitchen Gas Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.02; ! Value Until Time 1 + +OS:Schedule:Rule, + {51654735-9473-452d-a6cb-0c1352b97e03}, ! Handle + SecondarySchool Kitchen Gas Rule 2, ! Name + {6050b866-b11c-4448-b39d-3e11bbe44c31}, ! Schedule Ruleset Name + 1, ! Rule Order + {3e05726b-b87d-4a82-af1d-258679e8c11d}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {3e05726b-b87d-4a82-af1d-258679e8c11d}, ! Handle + SecondarySchool Kitchen Gas Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.02, ! Value Until Time 1 + 10, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 13, ! Hour 3 + 0, ! Minute 3 + 0.20000000000000001, ! Value Until Time 3 + 15, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.02; ! Value Until Time 5 + +OS:Schedule:Day, + {5bafc395-ec53-4eeb-8a52-768ca2b53cb9}, ! Handle + SecondarySchool Kitchen Gas Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.02, ! Value Until Time 1 + 10, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 13, ! Hour 3 + 0, ! Minute 3 + 0.20000000000000001, ! Value Until Time 3 + 15, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.02; ! Value Until Time 5 + +OS:Schedule:Rule, + {eaa0baad-2a24-4583-9021-456fa5e858b4}, ! Handle + SecondarySchool Kitchen Gas Rule 1, ! Name + {6050b866-b11c-4448-b39d-3e11bbe44c31}, ! Schedule Ruleset Name + 0, ! Rule Order + {28478815-82f7-4787-a020-92d133feeb6c}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {28478815-82f7-4787-a020-92d133feeb6c}, ! Handle + SecondarySchool Kitchen Gas Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.02; ! Value Until Time 1 + +OS:Schedule:Day, + {d5cb4250-277f-4d3b-8a20-9d9e818f995e}, ! Handle + SecondarySchool Kitchen Gas Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.02; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {83168bf5-8697-4081-a040-34e22a7061ad}, ! Handle + SecondarySchool Kitchen Equip, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {5f9c51a5-8d49-467c-a79b-af3f58cb6030}, ! Default Day Schedule Name + {19f2304a-2b5b-434e-bd6d-35c33aab2ad4}, ! Summer Design Day Schedule Name + {e328e02f-0902-45fa-a503-a29b6f970da2}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {5f9c51a5-8d49-467c-a79b-af3f58cb6030}, ! Handle + SecondarySchool Kitchen Equip Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.1, !- Value Until Time 1 + 10, !- Hour 2 + 0, !- Minute 2 + 0.15, !- Value Until Time 2 + 13, !- Hour 3 + 0, !- Minute 3 + 0.25, !- Value Until Time 3 + 15, !- Hour 4 + 0, !- Minute 4 + 0.15, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0.1; !- Value Until Time 5 + +OS:Schedule:Rule, + {8ea5a61d-9e9f-4fd7-a191-66d1b0dabf02}, ! Handle + SecondarySchool Kitchen Equip Rule 5, ! Name + {83168bf5-8697-4081-a040-34e22a7061ad}, ! Schedule Ruleset Name + 4, ! Rule Order + {91ff9c55-7f56-490a-b489-24005ee4c59d}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {91ff9c55-7f56-490a-b489-24005ee4c59d}, ! Handle + SecondarySchool Kitchen Equip Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.10000000000000001; ! Value Until Time 1 + +OS:Schedule:Rule, + {c38b7a11-e0a4-4996-8b3d-660b23a2bab0}, ! Handle + SecondarySchool Kitchen Equip Rule 4, ! Name + {83168bf5-8697-4081-a040-34e22a7061ad}, ! Schedule Ruleset Name + 3, ! Rule Order + {5fe08680-8f3e-4152-8cbe-8ec25880ef8e}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {5fe08680-8f3e-4152-8cbe-8ec25880ef8e}, ! Handle + SecondarySchool Kitchen Equip Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.10000000000000001, ! Value Until Time 1 + 10, ! Hour 2 + 0, ! Minute 2 + 0.13, ! Value Until Time 2 + 13, ! Hour 3 + 0, ! Minute 3 + 0.20000000000000001, ! Value Until Time 3 + 15, ! Hour 4 + 0, ! Minute 4 + 0.13, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.10000000000000001; ! Value Until Time 5 + +OS:Schedule:Rule, + {7116ef44-21d8-486e-8329-357c5ed957a8}, ! Handle + SecondarySchool Kitchen Equip Rule 3, ! Name + {83168bf5-8697-4081-a040-34e22a7061ad}, ! Schedule Ruleset Name + 2, ! Rule Order + {5217b53b-6d1a-4e2f-95e6-22fd8a4def90}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {5217b53b-6d1a-4e2f-95e6-22fd8a4def90}, ! Handle + SecondarySchool Kitchen Equip Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.10000000000000001; ! Value Until Time 1 + +OS:Schedule:Rule, + {0cda9609-aa42-456d-a7d4-72b97515dfd7}, ! Handle + SecondarySchool Kitchen Equip Rule 2, ! Name + {83168bf5-8697-4081-a040-34e22a7061ad}, ! Schedule Ruleset Name + 1, ! Rule Order + {622408da-8920-4f40-97ce-3aa655fb260d}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {622408da-8920-4f40-97ce-3aa655fb260d}, ! Handle + SecondarySchool Kitchen Equip Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.10000000000000001, ! Value Until Time 1 + 10, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 13, ! Hour 3 + 0, ! Minute 3 + 0.25, ! Value Until Time 3 + 15, ! Hour 4 + 0, ! Minute 4 + 0.14999999999999999, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.10000000000000001; ! Value Until Time 5 + +OS:Schedule:Day, + {19f2304a-2b5b-434e-bd6d-35c33aab2ad4}, ! Handle + SecondarySchool Kitchen Equip Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.10000000000000001, ! Value Until Time 1 + 10, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 13, ! Hour 3 + 0, ! Minute 3 + 0.25, ! Value Until Time 3 + 15, ! Hour 4 + 0, ! Minute 4 + 0.14999999999999999, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.10000000000000001; ! Value Until Time 5 + +OS:Schedule:Rule, + {87b1d6ca-5e10-4294-a73a-11aa58049b6d}, ! Handle + SecondarySchool Kitchen Equip Rule 1, ! Name + {83168bf5-8697-4081-a040-34e22a7061ad}, ! Schedule Ruleset Name + 0, ! Rule Order + {4e38e173-989a-4789-967c-212021291406}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {4e38e173-989a-4789-967c-212021291406}, ! Handle + SecondarySchool Kitchen Equip Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.10000000000000001; ! Value Until Time 1 + +OS:Schedule:Day, + {e328e02f-0902-45fa-a503-a29b6f970da2}, ! Handle + SecondarySchool Kitchen Equip Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.10000000000000001; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {91048d4e-942a-4e6e-acd9-062dc682ea52}, ! Handle + SecondarySchool Clothing, ! Name + {e814256c-c475-4870-9ed4-5feb769f3e3c}, ! Schedule Type Limits Name + {e026fa9a-66be-49ae-83ab-ff247082479c}, ! Default Day Schedule Name + {5950c758-0459-4dc4-9963-2253e8322bcc}, ! Summer Design Day Schedule Name + {b90bd1d6-bf66-4f1a-8096-4f61308d76f4}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {e026fa9a-66be-49ae-83ab-ff247082479c}, ! Handle + SecondarySchool Clothing Default Schedule, ! Name + {e814256c-c475-4870-9ed4-5feb769f3e3c}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1.1; !- Value Until Time 1 + +OS:Schedule:Day, + {b90bd1d6-bf66-4f1a-8096-4f61308d76f4}, ! Handle + SecondarySchool Clothing Winter Design Day, ! Name + {e814256c-c475-4870-9ed4-5feb769f3e3c}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1.1000000000000001; ! Value Until Time 1 + +OS:Schedule:Rule, + {c72a27e5-855f-4a26-846f-49803b5b0b64}, ! Handle + SecondarySchool Clothing Rule 2, ! Name + {91048d4e-942a-4e6e-acd9-062dc682ea52}, ! Schedule Ruleset Name + 1, ! Rule Order + {dbee4813-cc5e-43ed-9908-38b4db17f196}, ! Day Schedule Name + Yes, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 5, ! Start Month + 1, ! Start Day + 9, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {dbee4813-cc5e-43ed-9908-38b4db17f196}, ! Handle + SecondarySchool Clothing Rule 2 Day Schedule, ! Name + {e814256c-c475-4870-9ed4-5feb769f3e3c}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.59999999999999998; ! Value Until Time 1 + +OS:Schedule:Day, + {5950c758-0459-4dc4-9963-2253e8322bcc}, ! Handle + SecondarySchool Clothing Summer Design Day, ! Name + {e814256c-c475-4870-9ed4-5feb769f3e3c}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.59999999999999998; ! Value Until Time 1 + +OS:Schedule:Rule, + {e9024904-d13a-44c9-8551-4bf9c5cd6338}, ! Handle + SecondarySchool Clothing Rule 1, ! Name + {91048d4e-942a-4e6e-acd9-062dc682ea52}, ! Schedule Ruleset Name + 0, ! Rule Order + {54c45dab-c110-4bc6-b9a1-4cccca06e5d8}, ! Day Schedule Name + Yes, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 10, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {54c45dab-c110-4bc6-b9a1-4cccca06e5d8}, ! Handle + SecondarySchool Clothing Rule 1 Day Schedule, ! Name + {e814256c-c475-4870-9ed4-5feb769f3e3c}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1.1000000000000001; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {29d12490-c9b5-433a-b02c-ae4de43e11a8}, ! Handle + SecondarySchool Kitchen Exhaust, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {7ff1654c-9fe9-4c96-8e15-516e161d0c1b}, ! Default Day Schedule Name + {35a6f363-5707-43bb-adee-105bf2ff0fd5}, ! Summer Design Day Schedule Name + {e0b7ef6c-dc79-4538-bd58-13c00b50cbca}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {7ff1654c-9fe9-4c96-8e15-516e161d0c1b}, ! Handle + SecondarySchool Kitchen Exhaust Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 21, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {35a6f363-5707-43bb-adee-105bf2ff0fd5}, ! Handle + SecondarySchool Kitchen Exhaust Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 1, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0; ! Value Until Time 3 + +OS:Schedule:Rule, + {8be183d8-a51b-4bad-865e-210b7ff04472}, ! Handle + SecondarySchool Kitchen Exhaust Rule 1, ! Name + {29d12490-c9b5-433a-b02c-ae4de43e11a8}, ! Schedule Ruleset Name + 0, ! Rule Order + {733f4a1d-4617-409e-a88e-fba4dd0cf3b8}, ! Day Schedule Name + Yes, ! 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, + {733f4a1d-4617-409e-a88e-fba4dd0cf3b8}, ! Handle + SecondarySchool Kitchen Exhaust Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {e0b7ef6c-dc79-4538-bd58-13c00b50cbca}, ! Handle + SecondarySchool Kitchen Exhaust Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {dc0a8402-2022-4dfc-8982-6f0b06aca0b2}, ! Handle + SecondarySchool BLDG ELEVATORS, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {f3bbb325-72a3-49ab-b2e9-0464298c6ce8}, ! Default Day Schedule Name + {b1570f4a-38a4-4053-b816-b7aed56ac73c}, ! Summer Design Day Schedule Name + {ddd2f2b8-6333-4c55-9c24-25c96a891970}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {f3bbb325-72a3-49ab-b2e9-0464298c6ce8}, ! Handle + SecondarySchool BLDG ELEVATORS Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 15, !- Hour 2 + 0, !- Minute 2 + 0.3, !- Value Until Time 2 + 16, !- Hour 3 + 0, !- Minute 3 + 0.15, !- Value Until Time 3 + 24, !- Hour 4 + 0, !- Minute 4 + 0; !- Value Until Time 4 + +OS:Schedule:Day, + {b1570f4a-38a4-4053-b816-b7aed56ac73c}, ! Handle + SecondarySchool BLDG ELEVATORS Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 15, ! Hour 2 + 0, ! Minute 2 + 0.29999999999999999, ! Value Until Time 2 + 16, ! Hour 3 + 0, ! Minute 3 + 0.14999999999999999, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {3056091c-474b-4fe2-9240-30daefdff73d}, ! Handle + SecondarySchool BLDG ELEVATORS Rule 1, ! Name + {dc0a8402-2022-4dfc-8982-6f0b06aca0b2}, ! Schedule Ruleset Name + 0, ! Rule Order + {bd7158a9-b311-4191-8087-8eac3de36329}, ! Day Schedule Name + Yes, ! 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, + {bd7158a9-b311-4191-8087-8eac3de36329}, ! Handle + SecondarySchool BLDG ELEVATORS Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {ddd2f2b8-6333-4c55-9c24-25c96a891970}, ! Handle + SecondarySchool BLDG ELEVATORS Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Handle + SecondarySchool Infil, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {69e788bb-f0ad-4c54-9d91-88405a494a26}, ! Default Day Schedule Name + {158126fa-a4b9-4998-9bf3-03e05edd5b65}, ! Summer Design Day Schedule Name + {59292c1e-0654-4ff3-97b2-07d61d2e8ca5}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {69e788bb-f0ad-4c54-9d91-88405a494a26}, ! Handle + SecondarySchool Infil Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 21, !- Hour 2 + 0, !- Minute 2 + 0.5, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Day, + {59292c1e-0654-4ff3-97b2-07d61d2e8ca5}, ! Handle + SecondarySchool Infil Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 0.5, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Day, + {158126fa-a4b9-4998-9bf3-03e05edd5b65}, ! Handle + SecondarySchool Infil Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 0.5, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Ruleset, + {b80c5984-52bf-4454-828b-c483ae711bd3}, ! Handle + SecondarySchool Auditorium Occ, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {71520bc7-74b7-44c1-9a0a-cc6f4b27a95f}, ! Default Day Schedule Name + {0b5490a8-c526-40a3-96a9-444fe0da467a}, ! Summer Design Day Schedule Name + {c4a1ddda-4010-4512-9565-42c2fdb60b83}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {71520bc7-74b7-44c1-9a0a-cc6f4b27a95f}, ! Handle + SecondarySchool Auditorium Occ Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 15, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 17, !- Hour 3 + 0, !- Minute 3 + 0.95, !- Value Until Time 3 + 20, !- Hour 4 + 0, !- Minute 4 + 0.1, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0; !- Value Until Time 5 + +OS:Schedule:Rule, + {39344637-503f-46ad-ae15-10dc3e2c24de}, ! Handle + SecondarySchool Auditorium Occ Rule 5, ! Name + {b80c5984-52bf-4454-828b-c483ae711bd3}, ! Schedule Ruleset Name + 4, ! Rule Order + {5d3ffe24-1910-439a-9feb-e192fb95283d}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {5d3ffe24-1910-439a-9feb-e192fb95283d}, ! Handle + SecondarySchool Auditorium Occ Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {3e6b6c0d-ddcc-40d2-917f-134388ba6e74}, ! Handle + SecondarySchool Auditorium Occ Rule 4, ! Name + {b80c5984-52bf-4454-828b-c483ae711bd3}, ! Schedule Ruleset Name + 3, ! Rule Order + {98cea2fc-c272-4647-87c7-6fd37c4cd37e}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {98cea2fc-c272-4647-87c7-6fd37c4cd37e}, ! Handle + SecondarySchool Auditorium Occ Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 19, ! Hour 3 + 0, ! Minute 3 + 0.34999999999999998, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {87df0dc4-99e1-4221-b1db-f28d72b872fe}, ! Handle + SecondarySchool Auditorium Occ Rule 3, ! Name + {b80c5984-52bf-4454-828b-c483ae711bd3}, ! Schedule Ruleset Name + 2, ! Rule Order + {75c3be67-c76d-4097-8efd-3eac206e46e0}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {75c3be67-c76d-4097-8efd-3eac206e46e0}, ! Handle + SecondarySchool Auditorium Occ Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {676ea693-f800-4142-8f80-aaf072fd79b1}, ! Handle + SecondarySchool Auditorium Occ Rule 2, ! Name + {b80c5984-52bf-4454-828b-c483ae711bd3}, ! Schedule Ruleset Name + 1, ! Rule Order + {834aa7b0-96c9-437a-af5c-43329ed416b4}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {834aa7b0-96c9-437a-af5c-43329ed416b4}, ! Handle + SecondarySchool Auditorium Occ Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 15, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 17, ! Hour 3 + 0, ! Minute 3 + 0.94999999999999996, ! Value Until Time 3 + 20, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0; ! Value Until Time 5 + +OS:Schedule:Day, + {0b5490a8-c526-40a3-96a9-444fe0da467a}, ! Handle + SecondarySchool Auditorium Occ Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 15, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 17, ! Hour 3 + 0, ! Minute 3 + 0.94999999999999996, ! Value Until Time 3 + 20, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0; ! Value Until Time 5 + +OS:Schedule:Rule, + {e9e76513-ba6f-4f73-ad05-e881a13af176}, ! Handle + SecondarySchool Auditorium Occ Rule 1, ! Name + {b80c5984-52bf-4454-828b-c483ae711bd3}, ! Schedule Ruleset Name + 0, ! Rule Order + {c609f785-b73a-4dda-8e74-e21b3abeb945}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {c609f785-b73a-4dda-8e74-e21b3abeb945}, ! Handle + SecondarySchool Auditorium Occ Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {c4a1ddda-4010-4512-9565-42c2fdb60b83}, ! Handle + SecondarySchool Auditorium Occ Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {c7e91b09-2d50-4b42-ae55-58e351cc8597}, ! Handle + SecondarySchool HtgSetp BathCorrMechKitchen, ! Name + {84419bc3-50bf-4341-a90b-060f549d326f}, ! Schedule Type Limits Name + {f3874aab-0835-49d5-80d5-e41bc51a2874}, ! Default Day Schedule Name + {a2e6e617-9650-463f-a638-5005ea3966ca}, ! Summer Design Day Schedule Name + {0c2e9bb7-838b-45ab-ad3b-9a96e37d7bdf}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {f3874aab-0835-49d5-80d5-e41bc51a2874}, ! Handle + SecondarySchool HtgSetp BathCorrMechKitchen Default Schedule, ! Name + {84419bc3-50bf-4341-a90b-060f549d326f}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 16; !- Value Until Time 1 + +OS:Schedule:Day, + {0c2e9bb7-838b-45ab-ad3b-9a96e37d7bdf}, ! Handle + SecondarySchool HtgSetp BathCorrMechKitchen Winter Design Day, ! Name + {84419bc3-50bf-4341-a90b-060f549d326f}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 16, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 21, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 16; ! Value Until Time 3 + +OS:Schedule:Day, + {a2e6e617-9650-463f-a638-5005ea3966ca}, ! Handle + SecondarySchool HtgSetp BathCorrMechKitchen Summer Design Day, ! Name + {84419bc3-50bf-4341-a90b-060f549d326f}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 16; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Handle + SecondarySchool Bldg Equip, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {7139d57d-4b0a-4a5d-9382-a4f78ef56a13}, ! Default Day Schedule Name + {01533fa2-61e3-46f1-af08-33c66a25571d}, ! Summer Design Day Schedule Name + {4184998c-a521-4add-b229-bac9d71951cb}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {7139d57d-4b0a-4a5d-9382-a4f78ef56a13}, ! Handle + SecondarySchool Bldg Equip Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.35, !- Value Until Time 1 + 17, !- Hour 2 + 0, !- Minute 2 + 0.95, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0.35; !- Value Until Time 3 + +OS:Schedule:Rule, + {2b7fa688-36a8-4e56-a3c6-d1e1ff0e6d09}, ! Handle + SecondarySchool Bldg Equip Rule 5, ! Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Schedule Ruleset Name + 4, ! Rule Order + {42f20f90-2303-4bf9-9eff-0905946e74d9}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {42f20f90-2303-4bf9-9eff-0905946e74d9}, ! Handle + SecondarySchool Bldg Equip Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.34999999999999998; ! Value Until Time 1 + +OS:Schedule:Rule, + {96f46714-aefc-47b0-a6ac-f74b64a893ca}, ! Handle + SecondarySchool Bldg Equip Rule 4, ! Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Schedule Ruleset Name + 3, ! Rule Order + {da22ffd1-9c94-4a4d-9dbc-a17c60cddc84}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {da22ffd1-9c94-4a4d-9dbc-a17c60cddc84}, ! Handle + SecondarySchool Bldg Equip Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.25, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.5, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.25; ! Value Until Time 3 + +OS:Schedule:Rule, + {a109fafa-7c37-446c-875b-f81194c2f02b}, ! Handle + SecondarySchool Bldg Equip Rule 3, ! Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Schedule Ruleset Name + 2, ! Rule Order + {a513f9de-c4a8-46ae-86ae-3264dde1b976}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {a513f9de-c4a8-46ae-86ae-3264dde1b976}, ! Handle + SecondarySchool Bldg Equip Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.25; ! Value Until Time 1 + +OS:Schedule:Rule, + {b531927e-09ee-47b3-bd97-66bffa470d2b}, ! Handle + SecondarySchool Bldg Equip Rule 2, ! Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Schedule Ruleset Name + 1, ! Rule Order + {3cacbb14-a844-4931-a893-22710b6608f9}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {3cacbb14-a844-4931-a893-22710b6608f9}, ! Handle + SecondarySchool Bldg Equip Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.34999999999999998, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.94999999999999996, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.34999999999999998; ! Value Until Time 3 + +OS:Schedule:Day, + {01533fa2-61e3-46f1-af08-33c66a25571d}, ! Handle + SecondarySchool Bldg Equip Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.34999999999999998, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.94999999999999996, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.34999999999999998; ! Value Until Time 3 + +OS:Schedule:Rule, + {8859b225-5dac-499e-85ca-5a219e812f6b}, ! Handle + SecondarySchool Bldg Equip Rule 1, ! Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Schedule Ruleset Name + 0, ! Rule Order + {cb86a897-5edf-4932-ba34-6c47191905e3}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {cb86a897-5edf-4932-ba34-6c47191905e3}, ! Handle + SecondarySchool Bldg Equip Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.34999999999999998; ! Value Until Time 1 + +OS:Schedule:Day, + {4184998c-a521-4add-b229-bac9d71951cb}, ! Handle + SecondarySchool Bldg Equip Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.34999999999999998; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {cf4d1851-e2ed-437a-b408-bf9a3f914289}, ! Handle + SecondarySchool Gym Occ, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {13574634-db3d-4cce-accf-39da43213e1f}, ! Default Day Schedule Name + {46b11c38-d1e3-4e33-873d-37f995aee1c9}, ! Summer Design Day Schedule Name + {8b3a87c7-644d-4c07-8f42-df20d1649e2a}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {13574634-db3d-4cce-accf-39da43213e1f}, ! Handle + SecondarySchool Gym Occ Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 16, !- Hour 2 + 0, !- Minute 2 + 0.35, !- Value Until Time 2 + 21, !- Hour 3 + 0, !- Minute 3 + 0.95, !- Value Until Time 3 + 24, !- Hour 4 + 0, !- Minute 4 + 0; !- Value Until Time 4 + +OS:Schedule:Rule, + {6bbb91c3-c7ab-49ad-b797-c531beb02e23}, ! Handle + SecondarySchool Gym Occ Rule 5, ! Name + {cf4d1851-e2ed-437a-b408-bf9a3f914289}, ! Schedule Ruleset Name + 4, ! Rule Order + {42f2d67e-0c2d-4f33-b490-3cf342a29c2a}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {42f2d67e-0c2d-4f33-b490-3cf342a29c2a}, ! Handle + SecondarySchool Gym Occ Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {8256b7e6-8cad-4007-b28c-f5ce5df58801}, ! Handle + SecondarySchool Gym Occ Rule 4, ! Name + {cf4d1851-e2ed-437a-b408-bf9a3f914289}, ! Schedule Ruleset Name + 3, ! Rule Order + {a4216992-620f-4c22-bd1e-1155fdb0c732}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {a4216992-620f-4c22-bd1e-1155fdb0c732}, ! Handle + SecondarySchool Gym Occ Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 16, ! Hour 2 + 0, ! Minute 2 + 0.34999999999999998, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.34999999999999998, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {8f545784-d461-4f9e-9e58-74c24df6c8a8}, ! Handle + SecondarySchool Gym Occ Rule 3, ! Name + {cf4d1851-e2ed-437a-b408-bf9a3f914289}, ! Schedule Ruleset Name + 2, ! Rule Order + {c0cbb68b-74db-475f-9177-a1e5e726fc90}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {c0cbb68b-74db-475f-9177-a1e5e726fc90}, ! Handle + SecondarySchool Gym Occ Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {83ac1bc9-fb9d-4c75-b966-f4fd2f13e208}, ! Handle + SecondarySchool Gym Occ Rule 2, ! Name + {cf4d1851-e2ed-437a-b408-bf9a3f914289}, ! Schedule Ruleset Name + 1, ! Rule Order + {8dffd3b7-f56e-49e2-9a1e-3e22b023ff5b}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {8dffd3b7-f56e-49e2-9a1e-3e22b023ff5b}, ! Handle + SecondarySchool Gym Occ Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 16, ! Hour 2 + 0, ! Minute 2 + 0.34999999999999998, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.94999999999999996, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Day, + {46b11c38-d1e3-4e33-873d-37f995aee1c9}, ! Handle + SecondarySchool Gym Occ Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 16, ! Hour 2 + 0, ! Minute 2 + 0.34999999999999998, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.94999999999999996, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {b3594e35-491c-4783-83d1-5ee659aeb9c0}, ! Handle + SecondarySchool Gym Occ Rule 1, ! Name + {cf4d1851-e2ed-437a-b408-bf9a3f914289}, ! Schedule Ruleset Name + 0, ! Rule Order + {5f2fc20c-9361-4f5b-859c-04052f382cb5}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {5f2fc20c-9361-4f5b-859c-04052f382cb5}, ! Handle + SecondarySchool Gym Occ Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {8b3a87c7-644d-4c07-8f42-df20d1649e2a}, ! Handle + SecondarySchool Gym Occ Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {d14b894d-6718-40f1-bb81-291c435485ea}, ! Handle + Always On, ! Name + {06c36c03-d6f4-466b-a545-ae9a1064c023}, ! Schedule Type Limits Name + {622bfe03-dac5-4ca8-a05a-2d55bd197a9f}, ! Default Day Schedule Name + {759c12ce-a021-48a3-99e6-eb45e3751a24}, ! Summer Design Day Schedule Name + {76189472-ebe5-4dd1-a010-5e4884775e18}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {622bfe03-dac5-4ca8-a05a-2d55bd197a9f}, ! Handle + Always On Default Schedule, ! Name + {06c36c03-d6f4-466b-a545-ae9a1064c023}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {76189472-ebe5-4dd1-a010-5e4884775e18}, ! Handle + Always On Winter Design Day, ! Name + {06c36c03-d6f4-466b-a545-ae9a1064c023}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {759c12ce-a021-48a3-99e6-eb45e3751a24}, ! Handle + Always On Summer Design Day, ! Name + {06c36c03-d6f4-466b-a545-ae9a1064c023}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {fc9416eb-619d-4172-b513-019cb06cf615}, ! Handle + Always Off, ! Name + {002b458c-ec3f-4781-9901-cdaee085cee6}, ! Schedule Type Limits Name + {5b714007-01b2-41a4-b2d9-abd962db630c}, ! Default Day Schedule Name + {aff018dd-c4dd-4437-904b-58b1d8a04d9a}, ! Summer Design Day Schedule Name + {31a76b64-c4fe-4ffe-be53-5f5e20a05288}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {5b714007-01b2-41a4-b2d9-abd962db630c}, ! Handle + Always Off Default Schedule, ! Name + {002b458c-ec3f-4781-9901-cdaee085cee6}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {31a76b64-c4fe-4ffe-be53-5f5e20a05288}, ! Handle + Always Off Winter Design Day, ! Name + {002b458c-ec3f-4781-9901-cdaee085cee6}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {aff018dd-c4dd-4437-904b-58b1d8a04d9a}, ! Handle + Always Off Summer Design Day, ! Name + {002b458c-ec3f-4781-9901-cdaee085cee6}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {b65c9ad7-8b2b-4e42-8cb0-3a253a50022b}, ! Handle + SecondarySchool Office Occ, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {5180399a-9ca7-4abc-b1d5-00e60664e712}, ! Default Day Schedule Name + {5466e471-3aa9-4866-91a4-9eb4fb741e0b}, ! Summer Design Day Schedule Name + {5113681d-51a8-440b-9d33-b3359cc5afa6}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {5180399a-9ca7-4abc-b1d5-00e60664e712}, ! Handle + SecondarySchool Office Occ Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 17, !- Hour 2 + 0, !- Minute 2 + 0.95, !- Value Until Time 2 + 21, !- Hour 3 + 0, !- Minute 3 + 0.15, !- Value Until Time 3 + 24, !- Hour 4 + 0, !- Minute 4 + 0; !- Value Until Time 4 + +OS:Schedule:Rule, + {f515be48-fe9d-4f9d-979a-b4ec89a844a6}, ! Handle + SecondarySchool Office Occ Rule 5, ! Name + {b65c9ad7-8b2b-4e42-8cb0-3a253a50022b}, ! Schedule Ruleset Name + 4, ! Rule Order + {7408e6cb-8b24-4c5d-bc04-ba3b4d9dbac1}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {7408e6cb-8b24-4c5d-bc04-ba3b4d9dbac1}, ! Handle + SecondarySchool Office Occ Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {4d8d3cd6-e93b-4945-a6e7-30a64f4d9ff5}, ! Handle + SecondarySchool Office Occ Rule 4, ! Name + {b65c9ad7-8b2b-4e42-8cb0-3a253a50022b}, ! Schedule Ruleset Name + 3, ! Rule Order + {04661420-575f-4a47-b133-f53bdc213d75}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {04661420-575f-4a47-b133-f53bdc213d75}, ! Handle + SecondarySchool Office Occ Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.5, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0; ! Value Until Time 3 + +OS:Schedule:Rule, + {051ee3d5-4e70-44b4-9dde-ac9d58e35d9b}, ! Handle + SecondarySchool Office Occ Rule 3, ! Name + {b65c9ad7-8b2b-4e42-8cb0-3a253a50022b}, ! Schedule Ruleset Name + 2, ! Rule Order + {6d720aad-3524-494c-a00c-3883fa72d4c1}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {6d720aad-3524-494c-a00c-3883fa72d4c1}, ! Handle + SecondarySchool Office Occ Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {88f8cfe7-1eba-4615-a40f-8ccd851e7c82}, ! Handle + SecondarySchool Office Occ Rule 2, ! Name + {b65c9ad7-8b2b-4e42-8cb0-3a253a50022b}, ! Schedule Ruleset Name + 1, ! Rule Order + {b6feac32-d236-4a43-9795-4ef520efb8cc}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {b6feac32-d236-4a43-9795-4ef520efb8cc}, ! Handle + SecondarySchool Office Occ Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.94999999999999996, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.14999999999999999, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Day, + {5466e471-3aa9-4866-91a4-9eb4fb741e0b}, ! Handle + SecondarySchool Office Occ Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.94999999999999996, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.14999999999999999, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {25a159de-67ee-4fd4-98ad-8a0cec39e442}, ! Handle + SecondarySchool Office Occ Rule 1, ! Name + {b65c9ad7-8b2b-4e42-8cb0-3a253a50022b}, ! Schedule Ruleset Name + 0, ! Rule Order + {fe0cc953-41e4-46f3-a22b-3a3cbaf16c34}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {fe0cc953-41e4-46f3-a22b-3a3cbaf16c34}, ! Handle + SecondarySchool Office Occ Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {5113681d-51a8-440b-9d33-b3359cc5afa6}, ! Handle + SecondarySchool Office Occ Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {dd0d1b07-2eac-4964-a930-801630ed9866}, ! Handle + SecondarySchool Cafeteria Bldg Occ, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {3a9564b1-efd1-4e4b-859a-034921035805}, ! Default Day Schedule Name + {d216fddb-2cf2-4c3e-9b24-a15981f2a779}, ! Summer Design Day Schedule Name + {38d10aa1-513c-4812-b5ba-02ba84d31ff4}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {3a9564b1-efd1-4e4b-859a-034921035805}, ! Handle + SecondarySchool Cafeteria Bldg Occ Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 9, !- Hour 2 + 0, !- Minute 2 + 0.15, !- Value Until Time 2 + 11, !- Hour 3 + 0, !- Minute 3 + 0.05, !- Value Until Time 3 + 13, !- Hour 4 + 0, !- Minute 4 + 0.95, !- Value Until Time 4 + 15, !- Hour 5 + 0, !- Minute 5 + 0.15, !- Value Until Time 5 + 24, !- Hour 6 + 0, !- Minute 6 + 0; !- Value Until Time 6 + +OS:Schedule:Rule, + {072bbdf3-39af-469b-8de5-2f92e1e66a81}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 5, ! Name + {dd0d1b07-2eac-4964-a930-801630ed9866}, ! Schedule Ruleset Name + 4, ! Rule Order + {159d2f12-fe28-4eab-bbb8-2c263a05d472}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {159d2f12-fe28-4eab-bbb8-2c263a05d472}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {e14f0a34-ebdd-48fc-8957-ef2cc2bb3378}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 4, ! Name + {dd0d1b07-2eac-4964-a930-801630ed9866}, ! Schedule Ruleset Name + 3, ! Rule Order + {e2933b5e-6a91-4506-9b5f-64f3d424dc3a}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {e2933b5e-6a91-4506-9b5f-64f3d424dc3a}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 9, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 15, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0; ! Value Until Time 3 + +OS:Schedule:Rule, + {83659665-66e1-4a71-8b6f-d9bf853d5d6e}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 3, ! Name + {dd0d1b07-2eac-4964-a930-801630ed9866}, ! Schedule Ruleset Name + 2, ! Rule Order + {86822b32-1cda-4076-ac42-e6e23f5ededf}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {86822b32-1cda-4076-ac42-e6e23f5ededf}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {c55913f6-8141-4111-8600-faa8364b813c}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 2, ! Name + {dd0d1b07-2eac-4964-a930-801630ed9866}, ! Schedule Ruleset Name + 1, ! Rule Order + {f5d1bcb3-0de4-4029-ae26-d300417de367}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {f5d1bcb3-0de4-4029-ae26-d300417de367}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 9, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 11, ! Hour 3 + 0, ! Minute 3 + 0.050000000000000003, ! Value Until Time 3 + 13, ! Hour 4 + 0, ! Minute 4 + 0.94999999999999996, ! Value Until Time 4 + 15, ! Hour 5 + 0, ! Minute 5 + 0.14999999999999999, ! Value Until Time 5 + 24, ! Hour 6 + 0, ! Minute 6 + 0; ! Value Until Time 6 + +OS:Schedule:Day, + {d216fddb-2cf2-4c3e-9b24-a15981f2a779}, ! Handle + SecondarySchool Cafeteria Bldg Occ Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 9, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 11, ! Hour 3 + 0, ! Minute 3 + 0.050000000000000003, ! Value Until Time 3 + 13, ! Hour 4 + 0, ! Minute 4 + 0.94999999999999996, ! Value Until Time 4 + 15, ! Hour 5 + 0, ! Minute 5 + 0.14999999999999999, ! Value Until Time 5 + 24, ! Hour 6 + 0, ! Minute 6 + 0; ! Value Until Time 6 + +OS:Schedule:Rule, + {676b27cc-d5ab-4d90-ae58-5bf36cb1d235}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 1, ! Name + {dd0d1b07-2eac-4964-a930-801630ed9866}, ! Schedule Ruleset Name + 0, ! Rule Order + {61890a68-d351-4306-81c9-db5704903173}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {61890a68-d351-4306-81c9-db5704903173}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {38d10aa1-513c-4812-b5ba-02ba84d31ff4}, ! Handle + SecondarySchool Cafeteria Bldg Occ Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! Handle + SecondarySchool Activity, ! Name + {237119af-719d-4ff7-bf82-57eb24053c91}, ! Schedule Type Limits Name + {24b5fe0d-ae8c-4c1a-afbe-c20be4f45b17}, ! Default Day Schedule Name + {a1d8b723-097a-42cf-9995-ebcb1abde391}, ! Summer Design Day Schedule Name + {187f76e5-7849-40b7-a2d3-3a671e7e4fb6}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {24b5fe0d-ae8c-4c1a-afbe-c20be4f45b17}, ! Handle + SecondarySchool Activity Default Schedule, ! Name + {237119af-719d-4ff7-bf82-57eb24053c91}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 + +OS:Schedule:Day, + {187f76e5-7849-40b7-a2d3-3a671e7e4fb6}, ! Handle + SecondarySchool Activity Winter Design Day, ! Name + {237119af-719d-4ff7-bf82-57eb24053c91}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:Schedule:Day, + {a1d8b723-097a-42cf-9995-ebcb1abde391}, ! Handle + SecondarySchool Activity Summer Design Day, ! Name + {237119af-719d-4ff7-bf82-57eb24053c91}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Handle + SecondarySchool Bldg Light, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {9c178e17-db10-4af7-8338-f34c5ab8f340}, ! Default Day Schedule Name + {a637e699-ab47-4ecc-9150-fa244d76f52d}, ! Summer Design Day Schedule Name + {aa312513-2d31-42bd-9a04-bec68061f909}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {9c178e17-db10-4af7-8338-f34c5ab8f340}, ! Handle + SecondarySchool Bldg Light Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 0.1773, !- Value Until Time 1 + 21, !- Hour 2 + 0, !- Minute 2 + 0.9, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0.1773; !- Value Until Time 3 + +OS:Schedule:Rule, + {cdfe7698-aafb-475f-8cb1-4eb1c5802a94}, ! Handle + SecondarySchool Bldg Light Rule 5, ! Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Schedule Ruleset Name + 4, ! Rule Order + {595d039b-b0d9-444b-9371-f272823cd447}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {595d039b-b0d9-444b-9371-f272823cd447}, ! Handle + SecondarySchool Bldg Light Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.17730000000000001; ! Value Until Time 1 + +OS:Schedule:Rule, + {20659762-c392-41ec-93aa-13580b9b36c1}, ! Handle + SecondarySchool Bldg Light Rule 4, ! Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Schedule Ruleset Name + 3, ! Rule Order + {3288c993-a848-4e93-976b-205f4f05c3c5}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {3288c993-a848-4e93-976b-205f4f05c3c5}, ! Handle + SecondarySchool Bldg Light Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.17730000000000001, ! Value Until Time 1 + 20, ! Hour 2 + 0, ! Minute 2 + 0.5, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.17730000000000001; ! Value Until Time 3 + +OS:Schedule:Rule, + {9227788b-0299-4c40-bd12-4f00ad77863e}, ! Handle + SecondarySchool Bldg Light Rule 3, ! Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Schedule Ruleset Name + 2, ! Rule Order + {e496600f-e4e6-4685-b0c2-7d4bc4122f59}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {e496600f-e4e6-4685-b0c2-7d4bc4122f59}, ! Handle + SecondarySchool Bldg Light Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.17730000000000001; ! Value Until Time 1 + +OS:Schedule:Rule, + {1149ce0e-9729-4f0c-83ec-0615f9e8967c}, ! Handle + SecondarySchool Bldg Light Rule 2, ! Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Schedule Ruleset Name + 1, ! Rule Order + {78b22f1a-751e-4f19-a5be-bb9c2406008f}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {78b22f1a-751e-4f19-a5be-bb9c2406008f}, ! Handle + SecondarySchool Bldg Light Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 0.17730000000000001, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 0.90000000000000002, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.17730000000000001; ! Value Until Time 3 + +OS:Schedule:Day, + {a637e699-ab47-4ecc-9150-fa244d76f52d}, ! Handle + SecondarySchool Bldg Light Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 0.17730000000000001, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 0.90000000000000002, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.17730000000000001; ! Value Until Time 3 + +OS:Schedule:Rule, + {634f2422-ad1d-47e6-969b-3c54918e90da}, ! Handle + SecondarySchool Bldg Light Rule 1, ! Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Schedule Ruleset Name + 0, ! Rule Order + {f4a0d96d-4f16-4eac-ac34-2907dcb3e410}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {f4a0d96d-4f16-4eac-ac34-2907dcb3e410}, ! Handle + SecondarySchool Bldg Light Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.17730000000000001; ! Value Until Time 1 + +OS:Schedule:Day, + {aa312513-2d31-42bd-9a04-bec68061f909}, ! Handle + SecondarySchool Bldg Light Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.17730000000000001; ! Value Until Time 1 + +OS:ScheduleTypeLimits, + {5482b999-ffb1-4bc3-b47e-f81db0418b83}, ! Handle + Temperature 1, ! Name + , ! Lower Limit Value {BasedOnField A4} + , ! Upper Limit Value {BasedOnField A4} + Continuous, ! Numeric Type + Temperature; ! Unit Type + +OS:ScheduleTypeLimits, + {82c61da3-ef14-40d1-9843-cc13be933d4a}, ! Handle + Temperature 2, ! Name + , ! Lower Limit Value {BasedOnField A4} + , ! Upper Limit Value {BasedOnField A4} + Continuous, ! Numeric Type + Temperature; ! Unit Type + +OS:ScheduleTypeLimits, + {6356463a-d5c6-47ec-8686-b8e89dddfd62}, ! Handle + Temperature 3, ! Name + , ! Lower Limit Value {BasedOnField A4} + , ! Upper Limit Value {BasedOnField A4} + Continuous, ! Numeric Type + Temperature; ! Unit Type + +OS:ScheduleTypeLimits, + {237119af-719d-4ff7-bf82-57eb24053c91}, ! Handle + ActivityLevel, ! Name + 0, ! Lower Limit Value {BasedOnField A4} + , ! Upper Limit Value {BasedOnField A4} + Continuous, ! Numeric Type + ActivityLevel; ! Unit Type + +OS:ScheduleTypeLimits, + {84419bc3-50bf-4341-a90b-060f549d326f}, ! Handle + Temperature 4, ! Name + , ! Lower Limit Value {BasedOnField A4} + , ! Upper Limit Value {BasedOnField A4} + Continuous, ! Numeric Type + Temperature; ! Unit Type + +OS:ScheduleTypeLimits, + {06c36c03-d6f4-466b-a545-ae9a1064c023}, ! Handle + Fractional, ! Name + 0, ! Lower Limit Value {BasedOnField A4} + 1, ! Upper Limit Value {BasedOnField A4} + Continuous; ! Numeric Type + +OS:YearDescription, + {cd823687-4d94-4268-8a5d-549a303c1776}, !- Handle + , !- Calendar Year + Sunday; !- Day of Week for Start Day + +OS:Building, + {b56f49fd-4bd5-46b1-be78-a0e126b24483}, !- Handle + Secondary School, !- Name + , !- Building Sector Type + -0, !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + {f6c9890d-4fb2-4173-884a-8c6c03ed1670}, !- Space Type Name + {f7b68a59-87e0-4de6-8047-f75fef749334}, !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Standards Number of Stories + , !- Standards Number of Above Ground Stories + ; !- Standards Building Type + +OS:BuildingStory, + {50bc3895-09f6-41e5-ab30-91d7f09f1a2f}, !- Handle + Building Story 1, !- Name + 0, !- Nominal Z Coordinate {m} + 3.048, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {902cc960-2954-4671-a685-7f2c65da7370}; !- Group Rendering Name + +OS:Space, + {76ca9fb4-d09c-4a43-b13c-f84157f51665}, !- Handle + Space 101, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 7.12695618379875, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 0, !- Z Origin {m} + {50bc3895-09f6-41e5-ab30-91d7f09f1a2f}, !- Building Story Name + {d6dd14a7-0f35-40d8-ab3b-5f2ea0733eec}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {6c774126-c9d3-4c8a-b703-8e1577e2b587}, !- Handle + Surface 1, !- Name + Floor, !- Surface Type + , !- Construction Name + {76ca9fb4-d09c-4a43-b13c-f84157f51665}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7510a12f-79c0-4488-ba36-4923c219d8ef}, !- Handle + Surface 2, !- Name + Wall, !- Surface Type + , !- Construction Name + {76ca9fb4-d09c-4a43-b13c-f84157f51665}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {e588bf81-dd12-4e06-878a-93b4fb77623f}, !- Handle + Surface 3, !- Name + Wall, !- Surface Type + , !- Construction Name + {76ca9fb4-d09c-4a43-b13c-f84157f51665}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {27c2ff57-9a1d-4d73-ae7f-1a476ba2e73d}, !- Handle + Surface 4, !- Name + Wall, !- Surface Type + , !- Construction Name + {76ca9fb4-d09c-4a43-b13c-f84157f51665}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {071ccaa6-1176-472f-8aed-271c53e1098e}, !- Handle + Surface 5, !- Name + Wall, !- Surface Type + , !- Construction Name + {76ca9fb4-d09c-4a43-b13c-f84157f51665}, !- Space Name + Surface, !- Outside Boundary Condition + {462860d1-361a-469e-9122-cf482c891ec4}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {121e534c-d69d-4ce0-a5c5-da4e13d71eb1}, !- Handle + Surface 6, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {76ca9fb4-d09c-4a43-b13c-f84157f51665}, !- Space Name + Surface, !- Outside Boundary Condition + {88cf67c9-3525-467c-94d5-10c9aa3b90bf}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {97c57ad8-8097-472d-90fd-901067e6f1aa}, !- Handle + Space 102, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 13.2229561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 0, !- Z Origin {m} + {50bc3895-09f6-41e5-ab30-91d7f09f1a2f}, !- Building Story Name + {eef18cb7-dc4a-4ae2-bd2b-f0810a70d52d}; !- Thermal Zone Name + +OS:Surface, + {572fe093-69f2-4239-ad02-d05648b9a0a5}, !- Handle + Surface 7, !- Name + Floor, !- Surface Type + , !- Construction Name + {97c57ad8-8097-472d-90fd-901067e6f1aa}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b5819705-c4bc-43fc-b6be-9614ccd3759c}, !- Handle + Surface 8, !- Name + Wall, !- Surface Type + , !- Construction Name + {97c57ad8-8097-472d-90fd-901067e6f1aa}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {462860d1-361a-469e-9122-cf482c891ec4}, !- Handle + Surface 9, !- Name + Wall, !- Surface Type + , !- Construction Name + {97c57ad8-8097-472d-90fd-901067e6f1aa}, !- Space Name + Surface, !- Outside Boundary Condition + {071ccaa6-1176-472f-8aed-271c53e1098e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9e02d692-8c93-48f9-9024-71537d9814bd}, !- Handle + Surface 10, !- Name + Wall, !- Surface Type + , !- Construction Name + {97c57ad8-8097-472d-90fd-901067e6f1aa}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0b5c3e45-e975-477b-b4e2-a4ebe8d6f0ea}, !- Handle + Surface 11, !- Name + Wall, !- Surface Type + , !- Construction Name + {97c57ad8-8097-472d-90fd-901067e6f1aa}, !- Space Name + Surface, !- Outside Boundary Condition + {7c639df6-3519-4902-a764-cd4cd18ef1c9}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ddc9eebd-1b70-4a8e-808e-4af8d4255596}, !- Handle + Surface 12, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {97c57ad8-8097-472d-90fd-901067e6f1aa}, !- Space Name + Surface, !- Outside Boundary Condition + {d2bc3008-e008-43b0-9cd8-a8fb4fd26d14}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {0e16a0a5-62bd-4268-b2a0-bac7e16de732}, !- Handle + Space 103, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 19.3189561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 0, !- Z Origin {m} + {50bc3895-09f6-41e5-ab30-91d7f09f1a2f}, !- Building Story Name + {a0ea8b05-8dde-4a97-b3ec-d04f6a0e3756}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {c72ba71c-58ff-4bae-9fbc-2e0a6ed9a3a7}, !- Handle + Surface 13, !- Name + Floor, !- Surface Type + , !- Construction Name + {0e16a0a5-62bd-4268-b2a0-bac7e16de732}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5686c2eb-b2ea-4f6d-87f1-210525ada2cf}, !- Handle + Surface 14, !- Name + Wall, !- Surface Type + , !- Construction Name + {0e16a0a5-62bd-4268-b2a0-bac7e16de732}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {7c639df6-3519-4902-a764-cd4cd18ef1c9}, !- Handle + Surface 15, !- Name + Wall, !- Surface Type + , !- Construction Name + {0e16a0a5-62bd-4268-b2a0-bac7e16de732}, !- Space Name + Surface, !- Outside Boundary Condition + {0b5c3e45-e975-477b-b4e2-a4ebe8d6f0ea}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {da802f21-79d1-4a99-b548-dffcbeb2ca4d}, !- Handle + Surface 16, !- Name + Wall, !- Surface Type + , !- Construction Name + {0e16a0a5-62bd-4268-b2a0-bac7e16de732}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4f0d9952-7e13-465e-806f-464aa79ef0a6}, !- Handle + Surface 17, !- Name + Wall, !- Surface Type + , !- Construction Name + {0e16a0a5-62bd-4268-b2a0-bac7e16de732}, !- Space Name + Surface, !- Outside Boundary Condition + {c97b9221-91c3-4942-9590-f38b3e1f8b74}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ec09aba4-7298-425d-a4ef-1ea1cae169c0}, !- Handle + Surface 18, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {0e16a0a5-62bd-4268-b2a0-bac7e16de732}, !- Space Name + Surface, !- Outside Boundary Condition + {0efecb8e-67f8-4495-9285-c7b57b5c7920}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {b9e875cb-3bf3-4a68-8dc9-9c72e0c5d6d3}, !- Handle + Space 104, !- Name + {e04862be-4937-4a7f-a795-7731f14e8f20}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 25.4149561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 0, !- Z Origin {m} + {50bc3895-09f6-41e5-ab30-91d7f09f1a2f}, !- Building Story Name + {403b7ca0-99b3-4839-9d8d-865f3b02bc68}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {2a6d529b-87c0-4aa9-b754-69aa35111644}, !- Handle + Surface 19, !- Name + Floor, !- Surface Type + , !- Construction Name + {b9e875cb-3bf3-4a68-8dc9-9c72e0c5d6d3}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {115a0202-bd48-44af-9cb2-261beb6d321c}, !- Handle + Surface 20, !- Name + Wall, !- Surface Type + , !- Construction Name + {b9e875cb-3bf3-4a68-8dc9-9c72e0c5d6d3}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {c97b9221-91c3-4942-9590-f38b3e1f8b74}, !- Handle + Surface 21, !- Name + Wall, !- Surface Type + , !- Construction Name + {b9e875cb-3bf3-4a68-8dc9-9c72e0c5d6d3}, !- Space Name + Surface, !- Outside Boundary Condition + {4f0d9952-7e13-465e-806f-464aa79ef0a6}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d6ba376c-94f6-4dd5-8cca-a0a34de148d5}, !- Handle + Surface 22, !- Name + Wall, !- Surface Type + , !- Construction Name + {b9e875cb-3bf3-4a68-8dc9-9c72e0c5d6d3}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {345783ad-ab36-48af-90c0-f05eef8f877b}, !- Handle + Surface 23, !- Name + Wall, !- Surface Type + , !- Construction Name + {b9e875cb-3bf3-4a68-8dc9-9c72e0c5d6d3}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5dd7b5f4-c864-4a90-b6d4-e2a9b85826b7}, !- Handle + Surface 24, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {b9e875cb-3bf3-4a68-8dc9-9c72e0c5d6d3}, !- Space Name + Surface, !- Outside Boundary Condition + {0d19d99a-a78f-4652-bb6e-340bd2839367}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:BuildingStory, + {d03386f8-b086-4231-9af4-85477b337d6c}, !- Handle + Building Story 2, !- Name + 3.048, !- Nominal Z Coordinate {m} + 3.048, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {1923cc1e-b2a3-4b2d-b1b2-da11a250ac77}; !- Group Rendering Name + +OS:Space, + {af68cba8-f732-42f2-9c35-a7ac42db6da0}, !- Handle + Space 201, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 7.12695618379875, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 3.048, !- Z Origin {m} + {d03386f8-b086-4231-9af4-85477b337d6c}, !- Building Story Name + {2c85a7cb-953e-4974-985c-84ac595bf928}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {88cf67c9-3525-467c-94d5-10c9aa3b90bf}, !- Handle + Surface 25, !- Name + Floor, !- Surface Type + , !- Construction Name + {af68cba8-f732-42f2-9c35-a7ac42db6da0}, !- Space Name + Surface, !- Outside Boundary Condition + {121e534c-d69d-4ce0-a5c5-da4e13d71eb1}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {855e5dea-aca5-4c1c-aaba-746697e51f7c}, !- Handle + Surface 26, !- Name + Wall, !- Surface Type + , !- Construction Name + {af68cba8-f732-42f2-9c35-a7ac42db6da0}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {38bedd91-b942-428b-bd37-ceec5a9419d5}, !- Handle + Surface 27, !- Name + Wall, !- Surface Type + , !- Construction Name + {af68cba8-f732-42f2-9c35-a7ac42db6da0}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8b2d5739-1bf6-4d0b-8cfa-415de185cd0c}, !- Handle + Surface 28, !- Name + Wall, !- Surface Type + , !- Construction Name + {af68cba8-f732-42f2-9c35-a7ac42db6da0}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3ef4e4a1-7399-42e1-8ef2-6fb0dd03469d}, !- Handle + Surface 29, !- Name + Wall, !- Surface Type + , !- Construction Name + {af68cba8-f732-42f2-9c35-a7ac42db6da0}, !- Space Name + Surface, !- Outside Boundary Condition + {39ea00cd-46e6-4161-9243-a06c61ea930f}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2464bd32-a785-427e-84bd-5654d7b96721}, !- Handle + Surface 30, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {af68cba8-f732-42f2-9c35-a7ac42db6da0}, !- Space Name + Surface, !- Outside Boundary Condition + {9e14fd0a-6859-4eef-9bd5-aa2471f282dc}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {a4e45805-188c-4782-b8f5-0f41aaef663a}, !- Handle + Space 202, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 13.2229561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 3.048, !- Z Origin {m} + {d03386f8-b086-4231-9af4-85477b337d6c}, !- Building Story Name + {2c85a7cb-953e-4974-985c-84ac595bf928}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {d2bc3008-e008-43b0-9cd8-a8fb4fd26d14}, !- Handle + Surface 31, !- Name + Floor, !- Surface Type + , !- Construction Name + {a4e45805-188c-4782-b8f5-0f41aaef663a}, !- Space Name + Surface, !- Outside Boundary Condition + {ddc9eebd-1b70-4a8e-808e-4af8d4255596}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7441e58c-bfd3-41cc-9cbe-daff40118520}, !- Handle + Surface 32, !- Name + Wall, !- Surface Type + , !- Construction Name + {a4e45805-188c-4782-b8f5-0f41aaef663a}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {39ea00cd-46e6-4161-9243-a06c61ea930f}, !- Handle + Surface 33, !- Name + Wall, !- Surface Type + , !- Construction Name + {a4e45805-188c-4782-b8f5-0f41aaef663a}, !- Space Name + Surface, !- Outside Boundary Condition + {3ef4e4a1-7399-42e1-8ef2-6fb0dd03469d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b772905e-2c20-4396-be5d-e4343293b0e0}, !- Handle + Surface 34, !- Name + Wall, !- Surface Type + , !- Construction Name + {a4e45805-188c-4782-b8f5-0f41aaef663a}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3d567cf9-317b-4936-8d91-75accac3a016}, !- Handle + Surface 35, !- Name + Wall, !- Surface Type + , !- Construction Name + {a4e45805-188c-4782-b8f5-0f41aaef663a}, !- Space Name + Surface, !- Outside Boundary Condition + {4f458b97-556f-4864-bbcb-b346ed6572fd}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fbdd1d75-a782-4690-ad0c-c72f38a8ddd3}, !- Handle + Surface 36, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {a4e45805-188c-4782-b8f5-0f41aaef663a}, !- Space Name + Surface, !- Outside Boundary Condition + {d8eadc93-2112-4b8b-a0cb-70009d8e1db1}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {aef4681f-82f0-4bce-894f-e3179563f3bc}, !- Handle + Space 203, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 19.3189561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 3.048, !- Z Origin {m} + {d03386f8-b086-4231-9af4-85477b337d6c}, !- Building Story Name + {2c85a7cb-953e-4974-985c-84ac595bf928}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {0efecb8e-67f8-4495-9285-c7b57b5c7920}, !- Handle + Surface 37, !- Name + Floor, !- Surface Type + , !- Construction Name + {aef4681f-82f0-4bce-894f-e3179563f3bc}, !- Space Name + Surface, !- Outside Boundary Condition + {ec09aba4-7298-425d-a4ef-1ea1cae169c0}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {66004abe-0dab-431c-a6ce-1f96ebf0de68}, !- Handle + Surface 38, !- Name + Wall, !- Surface Type + , !- Construction Name + {aef4681f-82f0-4bce-894f-e3179563f3bc}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4f458b97-556f-4864-bbcb-b346ed6572fd}, !- Handle + Surface 39, !- Name + Wall, !- Surface Type + , !- Construction Name + {aef4681f-82f0-4bce-894f-e3179563f3bc}, !- Space Name + Surface, !- Outside Boundary Condition + {3d567cf9-317b-4936-8d91-75accac3a016}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fe770225-a065-4da2-b913-374477d7dc4b}, !- Handle + Surface 40, !- Name + Wall, !- Surface Type + , !- Construction Name + {aef4681f-82f0-4bce-894f-e3179563f3bc}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d9630035-108a-4fe6-891d-8fc712e834a9}, !- Handle + Surface 41, !- Name + Wall, !- Surface Type + , !- Construction Name + {aef4681f-82f0-4bce-894f-e3179563f3bc}, !- Space Name + Surface, !- Outside Boundary Condition + {d03c1845-51db-4a4c-8ee2-0a29efadce45}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1feceac7-d9b2-444f-9af5-236208d90ad9}, !- Handle + Surface 42, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {aef4681f-82f0-4bce-894f-e3179563f3bc}, !- Space Name + Surface, !- Outside Boundary Condition + {21902788-9243-4306-8533-7e32dbdd9756}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {cc29ffe3-b0f4-4419-8bdf-c3512dea498f}, !- Handle + Space 204, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 25.4149561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 3.048, !- Z Origin {m} + {d03386f8-b086-4231-9af4-85477b337d6c}, !- Building Story Name + {2c85a7cb-953e-4974-985c-84ac595bf928}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {0d19d99a-a78f-4652-bb6e-340bd2839367}, !- Handle + Surface 43, !- Name + Floor, !- Surface Type + , !- Construction Name + {cc29ffe3-b0f4-4419-8bdf-c3512dea498f}, !- Space Name + Surface, !- Outside Boundary Condition + {5dd7b5f4-c864-4a90-b6d4-e2a9b85826b7}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {25d16ac2-e6b3-44cd-ab25-9151cf85ae00}, !- Handle + Surface 44, !- Name + Wall, !- Surface Type + , !- Construction Name + {cc29ffe3-b0f4-4419-8bdf-c3512dea498f}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d03c1845-51db-4a4c-8ee2-0a29efadce45}, !- Handle + Surface 45, !- Name + Wall, !- Surface Type + , !- Construction Name + {cc29ffe3-b0f4-4419-8bdf-c3512dea498f}, !- Space Name + Surface, !- Outside Boundary Condition + {d9630035-108a-4fe6-891d-8fc712e834a9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e52504e8-2ab4-4002-a7f4-40e46a59b475}, !- Handle + Surface 46, !- Name + Wall, !- Surface Type + , !- Construction Name + {cc29ffe3-b0f4-4419-8bdf-c3512dea498f}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0da79dc8-ef2e-47ab-94cd-6263810dc2b0}, !- Handle + Surface 47, !- Name + Wall, !- Surface Type + , !- Construction Name + {cc29ffe3-b0f4-4419-8bdf-c3512dea498f}, !- 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, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ba506b8a-8204-4278-adc1-c41f9f6b0c71}, !- Handle + Surface 48, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {cc29ffe3-b0f4-4419-8bdf-c3512dea498f}, !- Space Name + Surface, !- Outside Boundary Condition + {7d2eb8c2-40f9-4dd6-9751-64ee7c229721}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:BuildingStory, + {0a6beaac-2a7f-4f0d-9e43-9ff677bd4dff}, !- Handle + Building Story 3, !- Name + 6.096, !- Nominal Z Coordinate {m} + 3.048, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {779895f9-d830-4d6e-b6cd-290106fcd477}; !- Group Rendering Name + +OS:Space, + {5414eb56-fc6c-4300-a22c-ca8637fd3776}, !- Handle + Space 301, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 7.12695618379875, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 4.2672, !- Z Origin {m} + {0a6beaac-2a7f-4f0d-9e43-9ff677bd4dff}, !- Building Story Name + {488a30b0-3f5c-43fa-a2d4-15fb73ce765c}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {9e14fd0a-6859-4eef-9bd5-aa2471f282dc}, !- Handle + Surface 49, !- Name + Floor, !- Surface Type + , !- Construction Name + {5414eb56-fc6c-4300-a22c-ca8637fd3776}, !- Space Name + Surface, !- Outside Boundary Condition + {2464bd32-a785-427e-84bd-5654d7b96721}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3804a4f5-82ab-4df6-a9ac-b00b4ddc2736}, !- Handle + Surface 50, !- Name + Wall, !- Surface Type + , !- Construction Name + {5414eb56-fc6c-4300-a22c-ca8637fd3776}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {5338c319-3e38-4d9b-9ec4-cf780411982d}, !- Handle + Surface 51, !- Name + Wall, !- Surface Type + , !- Construction Name + {5414eb56-fc6c-4300-a22c-ca8637fd3776}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2eabca2a-a710-46ab-bd34-329bcce0ec16}, !- Handle + Surface 52, !- Name + Wall, !- Surface Type + , !- Construction Name + {5414eb56-fc6c-4300-a22c-ca8637fd3776}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {01f0c659-b6a2-4081-b738-59f2d4a73b40}, !- Handle + Surface 53, !- Name + Wall, !- Surface Type + , !- Construction Name + {5414eb56-fc6c-4300-a22c-ca8637fd3776}, !- Space Name + Surface, !- Outside Boundary Condition + {21947a90-83ea-41ba-afba-4680da115b2d}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b0e56aec-53a0-460c-a78a-f344a252245e}, !- Handle + Surface 54, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {5414eb56-fc6c-4300-a22c-ca8637fd3776}, !- Space Name + Surface, !- Outside Boundary Condition + {d151327c-b185-40f5-872a-719db402d646}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {9cf3ea8e-7fd8-411f-a0a9-02012e76ab22}, !- Handle + Space 302, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 13.2229561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 4.2672, !- Z Origin {m} + {0a6beaac-2a7f-4f0d-9e43-9ff677bd4dff}, !- Building Story Name + {64154878-3721-4777-8a9f-6264c3cc4ba2}; !- Thermal Zone Name + +OS:Surface, + {d8eadc93-2112-4b8b-a0cb-70009d8e1db1}, !- Handle + Surface 55, !- Name + Floor, !- Surface Type + , !- Construction Name + {9cf3ea8e-7fd8-411f-a0a9-02012e76ab22}, !- Space Name + Surface, !- Outside Boundary Condition + {fbdd1d75-a782-4690-ad0c-c72f38a8ddd3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fac36644-b4d2-4ab2-bafd-bcaec2462b92}, !- Handle + Surface 56, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cf3ea8e-7fd8-411f-a0a9-02012e76ab22}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {21947a90-83ea-41ba-afba-4680da115b2d}, !- Handle + Surface 57, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cf3ea8e-7fd8-411f-a0a9-02012e76ab22}, !- Space Name + Surface, !- Outside Boundary Condition + {01f0c659-b6a2-4081-b738-59f2d4a73b40}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4b926865-599f-4da8-b647-a9f637764343}, !- Handle + Surface 58, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cf3ea8e-7fd8-411f-a0a9-02012e76ab22}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cdb2c1be-8519-4045-ae55-b0225479d2e7}, !- Handle + Surface 59, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cf3ea8e-7fd8-411f-a0a9-02012e76ab22}, !- Space Name + Surface, !- Outside Boundary Condition + {8d044e49-604a-48d2-820c-1f74676d3613}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ac3c88ee-d5ed-4f98-9276-c759b11a99fa}, !- Handle + Surface 60, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {9cf3ea8e-7fd8-411f-a0a9-02012e76ab22}, !- Space Name + Surface, !- Outside Boundary Condition + {0fd4ff80-6ffc-45ab-910c-04b7383da3a7}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {b0ddc7c7-fc99-434c-8fe2-e7068356970c}, !- Handle + Space 303, !- Name + {09d69842-de39-414d-b3e6-ca9da2c8a145}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 19.3189561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 4.2672, !- Z Origin {m} + {0a6beaac-2a7f-4f0d-9e43-9ff677bd4dff}, !- Building Story Name + {3328af8e-f3e2-4c86-b0e8-dc9e1d7ff66b}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {21902788-9243-4306-8533-7e32dbdd9756}, !- Handle + Surface 61, !- Name + Floor, !- Surface Type + , !- Construction Name + {b0ddc7c7-fc99-434c-8fe2-e7068356970c}, !- Space Name + Surface, !- Outside Boundary Condition + {1feceac7-d9b2-444f-9af5-236208d90ad9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {76cbe6f8-985a-4f3f-a96c-e649b4e89616}, !- Handle + Surface 62, !- Name + Wall, !- Surface Type + , !- Construction Name + {b0ddc7c7-fc99-434c-8fe2-e7068356970c}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {8d044e49-604a-48d2-820c-1f74676d3613}, !- Handle + Surface 63, !- Name + Wall, !- Surface Type + , !- Construction Name + {b0ddc7c7-fc99-434c-8fe2-e7068356970c}, !- Space Name + Surface, !- Outside Boundary Condition + {cdb2c1be-8519-4045-ae55-b0225479d2e7}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {68da73aa-0fec-42a4-a60f-c80657ef869d}, !- Handle + Surface 64, !- Name + Wall, !- Surface Type + , !- Construction Name + {b0ddc7c7-fc99-434c-8fe2-e7068356970c}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {563e67f5-b98f-4f11-9623-4b1d7eb03d1b}, !- Handle + Surface 65, !- Name + Wall, !- Surface Type + , !- Construction Name + {b0ddc7c7-fc99-434c-8fe2-e7068356970c}, !- Space Name + Surface, !- Outside Boundary Condition + {8450ba57-e660-4189-bcaf-8291a6589f8d}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {debc1587-974c-41b2-9c27-f031d8ce039a}, !- Handle + Surface 66, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {b0ddc7c7-fc99-434c-8fe2-e7068356970c}, !- Space Name + Surface, !- Outside Boundary Condition + {1776d60f-aef1-43b6-985c-b8f33b879436}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {0f62dc71-c6ba-4143-8e07-62e7f995fc7d}, !- Handle + Space 304, !- Name + {bb037295-1692-4a23-a0e4-ab2cba7fa69c}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 25.4149561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 4.2672, !- Z Origin {m} + {0a6beaac-2a7f-4f0d-9e43-9ff677bd4dff}, !- Building Story Name + {b1a43f6a-2510-4f0f-b7bc-8fa33483e05f}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {7d2eb8c2-40f9-4dd6-9751-64ee7c229721}, !- Handle + Surface 67, !- Name + Floor, !- Surface Type + , !- Construction Name + {0f62dc71-c6ba-4143-8e07-62e7f995fc7d}, !- Space Name + Surface, !- Outside Boundary Condition + {ba506b8a-8204-4278-adc1-c41f9f6b0c71}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7fb5b8cf-d63f-44ae-be45-c14c4c88c258}, !- Handle + Surface 68, !- Name + Wall, !- Surface Type + , !- Construction Name + {0f62dc71-c6ba-4143-8e07-62e7f995fc7d}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {8450ba57-e660-4189-bcaf-8291a6589f8d}, !- Handle + Surface 69, !- Name + Wall, !- Surface Type + , !- Construction Name + {0f62dc71-c6ba-4143-8e07-62e7f995fc7d}, !- Space Name + Surface, !- Outside Boundary Condition + {563e67f5-b98f-4f11-9623-4b1d7eb03d1b}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f647aeb4-bef7-4b87-a28e-f7c3535b65dd}, !- Handle + Surface 70, !- Name + Wall, !- Surface Type + , !- Construction Name + {0f62dc71-c6ba-4143-8e07-62e7f995fc7d}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {573e9f67-5617-4b19-803d-1c28a2e2c8a3}, !- Handle + Surface 71, !- Name + Wall, !- Surface Type + , !- Construction Name + {0f62dc71-c6ba-4143-8e07-62e7f995fc7d}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d6377ea0-84b3-43ed-918d-21c81066f473}, !- Handle + Surface 72, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {0f62dc71-c6ba-4143-8e07-62e7f995fc7d}, !- Space Name + Surface, !- Outside Boundary Condition + {0014eb3f-1a95-4dc6-911e-80a878b4cacd}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:BuildingStory, + {e7c7222c-3d5b-40be-909e-a21ef8bb7639}, !- Handle + Building Story 4, !- Name + 9.144, !- Nominal Z Coordinate {m} + 3.048, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {57f47034-25a8-4253-aab1-6933c964366f}; !- Group Rendering Name + +OS:Space, + {3c91efd3-3ba0-4b2b-b396-a3e72ff10e81}, !- Handle + Space 401, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 7.12695618379875, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 7.3152, !- Z Origin {m} + {e7c7222c-3d5b-40be-909e-a21ef8bb7639}, !- Building Story Name + {7251428b-f646-45b0-a022-b321d4641574}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {d151327c-b185-40f5-872a-719db402d646}, !- Handle + Surface 73, !- Name + Floor, !- Surface Type + , !- Construction Name + {3c91efd3-3ba0-4b2b-b396-a3e72ff10e81}, !- Space Name + Surface, !- Outside Boundary Condition + {b0e56aec-53a0-460c-a78a-f344a252245e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7abb8811-b551-4b11-9a61-8b0b73c79bfa}, !- Handle + Surface 74, !- Name + Wall, !- Surface Type + , !- Construction Name + {3c91efd3-3ba0-4b2b-b396-a3e72ff10e81}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cf12b8bc-9dc9-49df-a6fe-52e614c2599c}, !- Handle + Surface 75, !- Name + Wall, !- Surface Type + , !- Construction Name + {3c91efd3-3ba0-4b2b-b396-a3e72ff10e81}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b16cfe6f-f7d9-4a77-bb9c-2dc478937196}, !- Handle + Surface 76, !- Name + Wall, !- Surface Type + , !- Construction Name + {3c91efd3-3ba0-4b2b-b396-a3e72ff10e81}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a5294a5e-24fc-4bec-836d-da601cfc5691}, !- Handle + Surface 77, !- Name + Wall, !- Surface Type + , !- Construction Name + {3c91efd3-3ba0-4b2b-b396-a3e72ff10e81}, !- Space Name + Surface, !- Outside Boundary Condition + {bb8e39ee-0e73-4fea-bb4f-63e2061f2e90}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d6f71384-bfc4-4906-86cc-8eb79dba0432}, !- Handle + Surface 78, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {3c91efd3-3ba0-4b2b-b396-a3e72ff10e81}, !- 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, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {560775ef-2d9b-45b9-8808-11b69e70766d}, !- Handle + Space 402, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 13.2229561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 7.3152, !- Z Origin {m} + {e7c7222c-3d5b-40be-909e-a21ef8bb7639}, !- Building Story Name + {7251428b-f646-45b0-a022-b321d4641574}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {0fd4ff80-6ffc-45ab-910c-04b7383da3a7}, !- Handle + Surface 79, !- Name + Floor, !- Surface Type + , !- Construction Name + {560775ef-2d9b-45b9-8808-11b69e70766d}, !- Space Name + Surface, !- Outside Boundary Condition + {ac3c88ee-d5ed-4f98-9276-c759b11a99fa}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a699213d-5140-46b5-b2e3-dba85080c98f}, !- Handle + Surface 80, !- Name + Wall, !- Surface Type + , !- Construction Name + {560775ef-2d9b-45b9-8808-11b69e70766d}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bb8e39ee-0e73-4fea-bb4f-63e2061f2e90}, !- Handle + Surface 81, !- Name + Wall, !- Surface Type + , !- Construction Name + {560775ef-2d9b-45b9-8808-11b69e70766d}, !- Space Name + Surface, !- Outside Boundary Condition + {a5294a5e-24fc-4bec-836d-da601cfc5691}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1d7fa4ce-1842-460a-9821-33359a4d67bb}, !- Handle + Surface 82, !- Name + Wall, !- Surface Type + , !- Construction Name + {560775ef-2d9b-45b9-8808-11b69e70766d}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8e39a43c-7d88-4506-8bb4-f8ad56ab7388}, !- Handle + Surface 83, !- Name + Wall, !- Surface Type + , !- Construction Name + {560775ef-2d9b-45b9-8808-11b69e70766d}, !- Space Name + Surface, !- Outside Boundary Condition + {bf6b93b2-a89f-4fcd-b169-9aaab28400a4}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4796d3a0-22b1-46e8-8bb4-16b4e50ed09e}, !- Handle + Surface 84, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {560775ef-2d9b-45b9-8808-11b69e70766d}, !- 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, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {9f6a68fd-cfa1-4a13-9b84-01aea8338292}, !- Handle + Space 403, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 19.3189561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 7.3152, !- Z Origin {m} + {e7c7222c-3d5b-40be-909e-a21ef8bb7639}, !- Building Story Name + {3a3e72dc-d8ab-461f-abd5-79f454926204}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {1776d60f-aef1-43b6-985c-b8f33b879436}, !- Handle + Surface 85, !- Name + Floor, !- Surface Type + , !- Construction Name + {9f6a68fd-cfa1-4a13-9b84-01aea8338292}, !- Space Name + Surface, !- Outside Boundary Condition + {debc1587-974c-41b2-9c27-f031d8ce039a}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fb18788c-0b20-4540-9a5e-445b2bdca295}, !- Handle + Surface 86, !- Name + Wall, !- Surface Type + , !- Construction Name + {9f6a68fd-cfa1-4a13-9b84-01aea8338292}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bf6b93b2-a89f-4fcd-b169-9aaab28400a4}, !- Handle + Surface 87, !- Name + Wall, !- Surface Type + , !- Construction Name + {9f6a68fd-cfa1-4a13-9b84-01aea8338292}, !- Space Name + Surface, !- Outside Boundary Condition + {8e39a43c-7d88-4506-8bb4-f8ad56ab7388}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3604e587-8c90-4eb0-9494-ef1115151a55}, !- Handle + Surface 88, !- Name + Wall, !- Surface Type + , !- Construction Name + {9f6a68fd-cfa1-4a13-9b84-01aea8338292}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {920b68cb-ab51-42e7-9fc6-8b5907b2242d}, !- Handle + Surface 89, !- Name + Wall, !- Surface Type + , !- Construction Name + {9f6a68fd-cfa1-4a13-9b84-01aea8338292}, !- Space Name + Surface, !- Outside Boundary Condition + {2aac11c8-eb55-4179-9d9c-3e0a9dacb098}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c29f9d20-971d-4d38-b2c5-8d5c03ef6a89}, !- Handle + Surface 90, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {9f6a68fd-cfa1-4a13-9b84-01aea8338292}, !- 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, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {4212ec67-f2bc-4a56-8c3f-9c155ed47822}, !- Handle + Space 404, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 25.4149561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 7.3152, !- Z Origin {m} + {e7c7222c-3d5b-40be-909e-a21ef8bb7639}, !- Building Story Name + {3a3e72dc-d8ab-461f-abd5-79f454926204}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {0014eb3f-1a95-4dc6-911e-80a878b4cacd}, !- Handle + Surface 91, !- Name + Floor, !- Surface Type + , !- Construction Name + {4212ec67-f2bc-4a56-8c3f-9c155ed47822}, !- Space Name + Surface, !- Outside Boundary Condition + {d6377ea0-84b3-43ed-918d-21c81066f473}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6fb6b20a-281a-485d-8cd6-a29293bd0046}, !- Handle + Surface 92, !- Name + Wall, !- Surface Type + , !- Construction Name + {4212ec67-f2bc-4a56-8c3f-9c155ed47822}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2aac11c8-eb55-4179-9d9c-3e0a9dacb098}, !- Handle + Surface 93, !- Name + Wall, !- Surface Type + , !- Construction Name + {4212ec67-f2bc-4a56-8c3f-9c155ed47822}, !- Space Name + Surface, !- Outside Boundary Condition + {920b68cb-ab51-42e7-9fc6-8b5907b2242d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {98d63aa6-3667-46d2-9caf-6ede1752af74}, !- Handle + Surface 94, !- Name + Wall, !- Surface Type + , !- Construction Name + {4212ec67-f2bc-4a56-8c3f-9c155ed47822}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d09bd872-68c7-4906-bcff-d308410a7e59}, !- Handle + Surface 95, !- Name + Wall, !- Surface Type + , !- Construction Name + {4212ec67-f2bc-4a56-8c3f-9c155ed47822}, !- 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, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {428e079d-36ad-4f7f-a65d-737a9c09feb3}, !- Handle + Surface 96, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {4212ec67-f2bc-4a56-8c3f-9c155ed47822}, !- 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, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Rendering:Color, + {902cc960-2954-4671-a685-7f2c65da7370}, !- Handle + Rendering Color 1, !- Name + 186, !- Rendering Red Value + 85, !- Rendering Green Value + 211; !- Rendering Blue Value + +OS:Rendering:Color, + {1923cc1e-b2a3-4b2d-b1b2-da11a250ac77}, !- Handle + Rendering Color 2, !- Name + 244, !- Rendering Red Value + 164, !- Rendering Green Value + 96; !- Rendering Blue Value + +OS:Rendering:Color, + {779895f9-d830-4d6e-b6cd-290106fcd477}, !- Handle + Rendering Color 3, !- Name + 0, !- Rendering Red Value + 139, !- Rendering Green Value + 139; !- Rendering Blue Value + +OS:Rendering:Color, + {57f47034-25a8-4253-aab1-6933c964366f}, !- Handle + Rendering Color 4, !- Name + 209, !- Rendering Red Value + 75, !- Rendering Green Value + 100, !- Rendering Blue Value + 255; !- Rendering Alpha Value + +OS:SubSurface, + {a7450476-7d30-428d-b033-c7abec8da40e}, !- Handle + Sub Surface 1, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {115a0202-bd48-44af-9cb2-261beb6d321c}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -6.0706, 0, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -6.0706, 0, 0.76, !- X,Y,Z Vertex 2 {m} + -0.0253999999999994, 0, 0.76, !- X,Y,Z Vertex 3 {m} + -0.0253999999999994, 0, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {2f019c54-5b06-4ede-b27a-6893096c3585}, !- Handle + Sub Surface 2, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {27c2ff57-9a1d-4d73-ae7f-1a476ba2e73d}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -0.0254, 6.096, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -0.0254, 6.096, 0.76, !- X,Y,Z Vertex 2 {m} + -6.0706, 6.096, 0.76, !- X,Y,Z Vertex 3 {m} + -6.0706, 6.096, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {99d7c286-7bf6-4c04-9c16-898d8b30339f}, !- Handle + Sub Surface 3, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {345783ad-ab36-48af-90c0-f05eef8f877b}, !- 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.98944537815126, !- X,Y,Z Vertex 1 {m} + 0, 0.0254, 0.76, !- X,Y,Z Vertex 2 {m} + 0, 6.0706, 0.76, !- X,Y,Z Vertex 3 {m} + 0, 6.0706, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {df0ba998-0d2f-4c49-844e-f2f6debd507f}, !- Handle + Sub Surface 4, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {5686c2eb-b2ea-4f6d-87f1-210525ada2cf}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -6.0706, 0, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -6.0706, 0, 0.76, !- X,Y,Z Vertex 2 {m} + -0.0253999999999994, 0, 0.76, !- X,Y,Z Vertex 3 {m} + -0.0253999999999994, 0, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {f6f17600-5b8a-4eef-a770-80a46e01503b}, !- Handle + Sub Surface 5, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {7510a12f-79c0-4488-ba36-4923c219d8ef}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -6.0706, 0, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -6.0706, 0, 0.76, !- X,Y,Z Vertex 2 {m} + -0.0253999999999994, 0, 0.76, !- X,Y,Z Vertex 3 {m} + -0.0253999999999994, 0, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {8eb4ce64-b71b-4faa-99a9-1ab849b6df82}, !- Handle + Sub Surface 6, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {9e02d692-8c93-48f9-9024-71537d9814bd}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -0.0254, 6.096, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -0.0254, 6.096, 0.76, !- X,Y,Z Vertex 2 {m} + -6.0706, 6.096, 0.76, !- X,Y,Z Vertex 3 {m} + -6.0706, 6.096, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {a2668fde-5748-4017-b0b8-4f977e5697e6}, !- Handle + Sub Surface 7, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {b5819705-c4bc-43fc-b6be-9614ccd3759c}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -6.0706, 0, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -6.0706, 0, 0.76, !- X,Y,Z Vertex 2 {m} + -0.0253999999999994, 0, 0.76, !- X,Y,Z Vertex 3 {m} + -0.0253999999999994, 0, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {b23e0b23-8674-4277-bb5e-58cee095bc31}, !- Handle + Sub Surface 8, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {d6ba376c-94f6-4dd5-8cca-a0a34de148d5}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -0.0254, 6.096, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -0.0254, 6.096, 0.76, !- X,Y,Z Vertex 2 {m} + -6.0706, 6.096, 0.76, !- X,Y,Z Vertex 3 {m} + -6.0706, 6.096, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {933119a4-e7a2-40e1-b653-09bc8f81d9f7}, !- Handle + Sub Surface 9, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {da802f21-79d1-4a99-b548-dffcbeb2ca4d}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -0.0254, 6.096, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -0.0254, 6.096, 0.76, !- X,Y,Z Vertex 2 {m} + -6.0706, 6.096, 0.76, !- X,Y,Z Vertex 3 {m} + -6.0706, 6.096, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {1b64fde4-07e5-4f08-bac2-9546bc22bb29}, !- Handle + Sub Surface 10, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {e588bf81-dd12-4e06-878a-93b4fb77623f}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -6.096, 6.0706, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -6.096, 6.0706, 0.76, !- X,Y,Z Vertex 2 {m} + -6.096, 0.0253999999999994, 0.76, !- X,Y,Z Vertex 3 {m} + -6.096, 0.0253999999999994, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SpaceType, + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Handle + Plenum, !- Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + {69d9464d-c9e7-4da8-981d-f947b86c7e21}, !- Group Rendering Name + , !- Design Specification Outdoor Air Object Name + SecondarySchool, !- Standards Building Type + CeilingReturnAirPlenum; !- Standards Space Type + +OS:Rendering:Color, + {69d9464d-c9e7-4da8-981d-f947b86c7e21}, !- Handle + Rendering Color 5, !- Name + 196, !- Rendering Red Value + 90, !- Rendering Green Value + 166, !- Rendering Blue Value + 255; !- Rendering Alpha Value + +OS:ThermalZone, + {3a3e72dc-d8ab-461f-abd5-79f454926204}, !- Handle + Thermal Zone: Space 403 - Plus, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {7e951556-7380-49e8-bacc-b62f243d1ce5}, !- Zone Air Inlet Port List + {83ae806e-7abd-4d3f-a334-27fa9f54011a}, !- Zone Air Exhaust Port List + {28c8f56a-e3b7-4441-8774-07ea195eefdd}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {2c915493-70f5-4ed0-bafe-7b0101c20f1a}, !- Group Rendering Name + , !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {aec54f15-0bae-41b6-8008-92593e924c43}, !- Handle + Node 1, !- Name + {28c8f56a-e3b7-4441-8774-07ea195eefdd}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {28c8f56a-e3b7-4441-8774-07ea195eefdd}, !- Handle + Connection 1, !- Name + {3a3e72dc-d8ab-461f-abd5-79f454926204}, !- Source Object + 11, !- Outlet Port + {aec54f15-0bae-41b6-8008-92593e924c43}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {7e951556-7380-49e8-bacc-b62f243d1ce5}, !- Handle + Port List 1, !- Name + {3a3e72dc-d8ab-461f-abd5-79f454926204}; !- HVAC Component + +OS:PortList, + {83ae806e-7abd-4d3f-a334-27fa9f54011a}, !- Handle + Port List 2, !- Name + {3a3e72dc-d8ab-461f-abd5-79f454926204}; !- HVAC Component + +OS:Sizing:Zone, + {cca93e18-80cb-4025-a255-177e5065bbf4}, !- Handle + {3a3e72dc-d8ab-461f-abd5-79f454926204}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {c8f9504d-a998-4e8d-b70b-dea4213e428c}, !- Handle + Zone HVAC Equipment List 1, !- Name + {3a3e72dc-d8ab-461f-abd5-79f454926204}; !- Thermal Zone + +OS:Rendering:Color, + {2c915493-70f5-4ed0-bafe-7b0101c20f1a}, !- Handle + Rendering Color 6, !- Name + 218, !- Rendering Red Value + 112, !- Rendering Green Value + 214; !- Rendering Blue Value + +OS:ThermalZone, + {7251428b-f646-45b0-a022-b321d4641574}, !- Handle + Thermal Zone: Space 401 - Plus, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {cf67e040-4227-47d7-b475-c1cd420904e2}, !- Zone Air Inlet Port List + {16f9f8c1-9ce7-4aec-83b9-7439500432be}, !- Zone Air Exhaust Port List + {15c88cf7-cc7a-4779-81a5-8e4c71427fab}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {da49422e-092b-416a-8509-39a0cdb1b61a}, !- Group Rendering Name + , !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {a602d2fd-d759-47ff-813d-8993bfce0d37}, !- Handle + Node 2, !- Name + {15c88cf7-cc7a-4779-81a5-8e4c71427fab}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {15c88cf7-cc7a-4779-81a5-8e4c71427fab}, !- Handle + Connection 2, !- Name + {7251428b-f646-45b0-a022-b321d4641574}, !- Source Object + 11, !- Outlet Port + {a602d2fd-d759-47ff-813d-8993bfce0d37}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {cf67e040-4227-47d7-b475-c1cd420904e2}, !- Handle + Port List 3, !- Name + {7251428b-f646-45b0-a022-b321d4641574}; !- HVAC Component + +OS:PortList, + {16f9f8c1-9ce7-4aec-83b9-7439500432be}, !- Handle + Port List 4, !- Name + {7251428b-f646-45b0-a022-b321d4641574}; !- HVAC Component + +OS:Sizing:Zone, + {517bf3a2-ba97-4d5f-b4b5-b5a871f61320}, !- Handle + {7251428b-f646-45b0-a022-b321d4641574}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {a89189ae-2cfa-4f4c-a098-a9f7c7ac4691}, !- Handle + Zone HVAC Equipment List 2, !- Name + {7251428b-f646-45b0-a022-b321d4641574}; !- Thermal Zone + +OS:Rendering:Color, + {da49422e-092b-416a-8509-39a0cdb1b61a}, !- Handle + Rendering Color 7, !- Name + 176, !- Rendering Red Value + 224, !- Rendering Green Value + 230; !- Rendering Blue Value + +OS:ThermalZone, + {2c85a7cb-953e-4974-985c-84ac595bf928}, !- Handle + Thermal Zone: Space 201 - Plus, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {75776004-54c5-495c-b4fa-41eb8a6da992}, !- Zone Air Inlet Port List + {ed237696-9ed5-40d9-9958-b09e1c9e88af}, !- Zone Air Exhaust Port List + {5083eeb9-9d28-4d08-addd-5f18498687a9}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {ea76d26c-f02d-412b-9d80-e9fd0d05300c}, !- Group Rendering Name + , !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {3908784f-ecf9-4797-b447-ad808c1478ea}, !- Handle + Node 3, !- Name + {5083eeb9-9d28-4d08-addd-5f18498687a9}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {5083eeb9-9d28-4d08-addd-5f18498687a9}, !- Handle + Connection 3, !- Name + {2c85a7cb-953e-4974-985c-84ac595bf928}, !- Source Object + 11, !- Outlet Port + {3908784f-ecf9-4797-b447-ad808c1478ea}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {75776004-54c5-495c-b4fa-41eb8a6da992}, !- Handle + Port List 5, !- Name + {2c85a7cb-953e-4974-985c-84ac595bf928}; !- HVAC Component + +OS:PortList, + {ed237696-9ed5-40d9-9958-b09e1c9e88af}, !- Handle + Port List 6, !- Name + {2c85a7cb-953e-4974-985c-84ac595bf928}; !- HVAC Component + +OS:Sizing:Zone, + {0327ed1f-87e5-4164-aa08-69510bde7c97}, !- Handle + {2c85a7cb-953e-4974-985c-84ac595bf928}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {43bff649-012b-4955-9fda-327de865f555}, !- Handle + Zone HVAC Equipment List 3, !- Name + {2c85a7cb-953e-4974-985c-84ac595bf928}; !- Thermal Zone + +OS:Rendering:Color, + {ea76d26c-f02d-412b-9d80-e9fd0d05300c}, !- Handle + Rendering Color 8, !- Name + 105, !- Rendering Red Value + 105, !- Rendering Green Value + 105; !- Rendering Blue Value + +OS:ThermalZone, + {a0ea8b05-8dde-4a97-b3ec-d04f6a0e3756}, !- Handle + Thermal Zone: Space 103, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {7133393d-6f77-44b4-a6eb-e55d7d5efee3}, !- Zone Air Inlet Port List + {565155ec-8d64-43ad-809d-aefa687207f4}, !- Zone Air Exhaust Port List + {41159897-10ab-4fcb-867a-d22cb097b032}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {fa3b7706-ff20-4f88-96ca-0648471ebb30}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {c0ba5df3-b5c4-4135-b6b8-21aac9958b27}, !- Handle + Node 4, !- Name + {41159897-10ab-4fcb-867a-d22cb097b032}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {41159897-10ab-4fcb-867a-d22cb097b032}, !- Handle + Connection 4, !- Name + {a0ea8b05-8dde-4a97-b3ec-d04f6a0e3756}, !- Source Object + 11, !- Outlet Port + {c0ba5df3-b5c4-4135-b6b8-21aac9958b27}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {7133393d-6f77-44b4-a6eb-e55d7d5efee3}, !- Handle + Port List 7, !- Name + {a0ea8b05-8dde-4a97-b3ec-d04f6a0e3756}; !- HVAC Component + +OS:PortList, + {565155ec-8d64-43ad-809d-aefa687207f4}, !- Handle + Port List 8, !- Name + {a0ea8b05-8dde-4a97-b3ec-d04f6a0e3756}; !- HVAC Component + +OS:Sizing:Zone, + {c63a9630-2607-45da-abb0-40349e3dc1ee}, !- Handle + {a0ea8b05-8dde-4a97-b3ec-d04f6a0e3756}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {c583e0ab-dbdb-40eb-9346-d664c1a8b188}, !- Handle + Zone HVAC Equipment List 4, !- Name + {a0ea8b05-8dde-4a97-b3ec-d04f6a0e3756}; !- Thermal Zone + +OS:ThermalZone, + {b1a43f6a-2510-4f0f-b7bc-8fa33483e05f}, !- Handle + Thermal Zone: Space 304, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {ab6ac67e-f45b-4025-ac07-079651e2310f}, !- Zone Air Inlet Port List + {31a1ee89-8279-491e-89ef-d43d9435d80c}, !- Zone Air Exhaust Port List + {2e5a2aa6-0e5c-4cbd-a36c-ef6afc5e57fc}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {b340fbb0-dffb-49c1-847d-d6f53001b31d}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {3e93a59d-aaa5-41a7-9a87-14260fd28357}, !- Handle + Node 5, !- Name + {2e5a2aa6-0e5c-4cbd-a36c-ef6afc5e57fc}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {2e5a2aa6-0e5c-4cbd-a36c-ef6afc5e57fc}, !- Handle + Connection 5, !- Name + {b1a43f6a-2510-4f0f-b7bc-8fa33483e05f}, !- Source Object + 11, !- Outlet Port + {3e93a59d-aaa5-41a7-9a87-14260fd28357}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {ab6ac67e-f45b-4025-ac07-079651e2310f}, !- Handle + Port List 9, !- Name + {b1a43f6a-2510-4f0f-b7bc-8fa33483e05f}; !- HVAC Component + +OS:PortList, + {31a1ee89-8279-491e-89ef-d43d9435d80c}, !- Handle + Port List 10, !- Name + {b1a43f6a-2510-4f0f-b7bc-8fa33483e05f}; !- HVAC Component + +OS:Sizing:Zone, + {b05cfc14-1039-4432-a0aa-9b4bab0cb00f}, !- Handle + {b1a43f6a-2510-4f0f-b7bc-8fa33483e05f}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {8b590d69-1265-4a97-ab52-40f72b5c9f15}, !- Handle + Zone HVAC Equipment List 5, !- Name + {b1a43f6a-2510-4f0f-b7bc-8fa33483e05f}; !- Thermal Zone + +OS:ThermalZone, + {488a30b0-3f5c-43fa-a2d4-15fb73ce765c}, !- Handle + Thermal Zone: Space 301, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {edd923e3-02cd-4b1b-86d3-2ac461be0d35}, !- Zone Air Inlet Port List + {1bb016f5-1cbf-4670-8e0f-29e57efaaaa9}, !- Zone Air Exhaust Port List + {6b70bd6d-7657-43d9-9dfb-ad6ba4d63d6e}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {8b21d1cf-0f9e-47c0-a092-26f787c3e57f}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {aaaccbe0-b4f9-4807-96ee-6d50f26d7575}, !- Handle + Node 6, !- Name + {6b70bd6d-7657-43d9-9dfb-ad6ba4d63d6e}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {6b70bd6d-7657-43d9-9dfb-ad6ba4d63d6e}, !- Handle + Connection 6, !- Name + {488a30b0-3f5c-43fa-a2d4-15fb73ce765c}, !- Source Object + 11, !- Outlet Port + {aaaccbe0-b4f9-4807-96ee-6d50f26d7575}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {edd923e3-02cd-4b1b-86d3-2ac461be0d35}, !- Handle + Port List 11, !- Name + {488a30b0-3f5c-43fa-a2d4-15fb73ce765c}; !- HVAC Component + +OS:PortList, + {1bb016f5-1cbf-4670-8e0f-29e57efaaaa9}, !- Handle + Port List 12, !- Name + {488a30b0-3f5c-43fa-a2d4-15fb73ce765c}; !- HVAC Component + +OS:Sizing:Zone, + {ca3cb509-aef0-4b60-86a6-9556a9a10bbb}, !- Handle + {488a30b0-3f5c-43fa-a2d4-15fb73ce765c}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {7632ffcb-a051-4a69-ab4f-fe9cab964200}, !- Handle + Zone HVAC Equipment List 6, !- Name + {488a30b0-3f5c-43fa-a2d4-15fb73ce765c}; !- Thermal Zone + +OS:ThermalZone, + {d6dd14a7-0f35-40d8-ab3b-5f2ea0733eec}, !- Handle + Thermal Zone: Space 101, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {33b2eb9c-3095-442f-91cb-335b6677eb43}, !- Zone Air Inlet Port List + {dfdf62d7-4027-4eee-a497-63acf57676e0}, !- Zone Air Exhaust Port List + {8d6dd6c8-a630-4ca1-b96d-569c556ac683}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {e88bb11f-d3b6-49d8-9d66-947685cdb150}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {5e788be9-9289-44d3-a00e-de6ca38e1870}, !- Handle + Node 7, !- Name + {8d6dd6c8-a630-4ca1-b96d-569c556ac683}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {8d6dd6c8-a630-4ca1-b96d-569c556ac683}, !- Handle + Connection 7, !- Name + {d6dd14a7-0f35-40d8-ab3b-5f2ea0733eec}, !- Source Object + 11, !- Outlet Port + {5e788be9-9289-44d3-a00e-de6ca38e1870}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {33b2eb9c-3095-442f-91cb-335b6677eb43}, !- Handle + Port List 13, !- Name + {d6dd14a7-0f35-40d8-ab3b-5f2ea0733eec}; !- HVAC Component + +OS:PortList, + {dfdf62d7-4027-4eee-a497-63acf57676e0}, !- Handle + Port List 14, !- Name + {d6dd14a7-0f35-40d8-ab3b-5f2ea0733eec}; !- HVAC Component + +OS:Sizing:Zone, + {87d2cc1e-d383-43eb-8dd6-1e86950c677b}, !- Handle + {d6dd14a7-0f35-40d8-ab3b-5f2ea0733eec}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {09a497b2-02cd-4343-992f-cdb3717dd222}, !- Handle + Zone HVAC Equipment List 7, !- Name + {d6dd14a7-0f35-40d8-ab3b-5f2ea0733eec}; !- Thermal Zone + +OS:ThermalZone, + {eef18cb7-dc4a-4ae2-bd2b-f0810a70d52d}, !- Handle + Thermal Zone: Space 102, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {78ec2641-dede-4bdc-b556-9f97cc1251c3}, !- Zone Air Inlet Port List + {d767d74a-e2a8-48a3-badd-546731500318}, !- Zone Air Exhaust Port List + {9190cb88-e20f-470b-8422-60399b0e8104}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {910fa816-5ee5-4681-a301-a36c162cccc4}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {ae27ccef-abe3-4176-8369-4f8215c1f925}, !- Handle + Node 8, !- Name + {9190cb88-e20f-470b-8422-60399b0e8104}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {9190cb88-e20f-470b-8422-60399b0e8104}, !- Handle + Connection 8, !- Name + {eef18cb7-dc4a-4ae2-bd2b-f0810a70d52d}, !- Source Object + 11, !- Outlet Port + {ae27ccef-abe3-4176-8369-4f8215c1f925}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {78ec2641-dede-4bdc-b556-9f97cc1251c3}, !- Handle + Port List 15, !- Name + {eef18cb7-dc4a-4ae2-bd2b-f0810a70d52d}; !- HVAC Component + +OS:PortList, + {d767d74a-e2a8-48a3-badd-546731500318}, !- Handle + Port List 16, !- Name + {eef18cb7-dc4a-4ae2-bd2b-f0810a70d52d}; !- HVAC Component + +OS:Sizing:Zone, + {5718f5db-1e8f-48d1-8cfa-f37c021f598a}, !- Handle + {eef18cb7-dc4a-4ae2-bd2b-f0810a70d52d}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {88a44666-6d94-4e0c-aaa5-4a912f0fc27d}, !- Handle + Zone HVAC Equipment List 8, !- Name + {eef18cb7-dc4a-4ae2-bd2b-f0810a70d52d}; !- Thermal Zone + +OS:ThermalZone, + {64154878-3721-4777-8a9f-6264c3cc4ba2}, !- Handle + Thermal Zone: Space 302, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {ba878137-003c-42f0-bbdc-255564b9b985}, !- Zone Air Inlet Port List + {e9fcd973-d7e8-41ed-993c-56212bf9ee8e}, !- Zone Air Exhaust Port List + {ba117941-8529-44be-9d61-d573d8070d73}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {d66d8496-0397-4826-9a42-a050eb30017e}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {2fe7fe5a-d6de-4434-9a71-5f74bb7b8ea0}, !- Handle + Node 9, !- Name + {ba117941-8529-44be-9d61-d573d8070d73}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {ba117941-8529-44be-9d61-d573d8070d73}, !- Handle + Connection 9, !- Name + {64154878-3721-4777-8a9f-6264c3cc4ba2}, !- Source Object + 11, !- Outlet Port + {2fe7fe5a-d6de-4434-9a71-5f74bb7b8ea0}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {ba878137-003c-42f0-bbdc-255564b9b985}, !- Handle + Port List 17, !- Name + {64154878-3721-4777-8a9f-6264c3cc4ba2}; !- HVAC Component + +OS:PortList, + {e9fcd973-d7e8-41ed-993c-56212bf9ee8e}, !- Handle + Port List 18, !- Name + {64154878-3721-4777-8a9f-6264c3cc4ba2}; !- HVAC Component + +OS:Sizing:Zone, + {2e174712-3fd9-476a-a7ee-c132262ea895}, !- Handle + {64154878-3721-4777-8a9f-6264c3cc4ba2}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {120bd5fd-9976-426c-b676-e544e2eeda3e}, !- Handle + Zone HVAC Equipment List 9, !- Name + {64154878-3721-4777-8a9f-6264c3cc4ba2}; !- Thermal Zone + +OS:ThermalZone, + {3328af8e-f3e2-4c86-b0e8-dc9e1d7ff66b}, !- Handle + Thermal Zone: Space 303, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {7658fd10-e320-4670-b760-763b8f88f89d}, !- Zone Air Inlet Port List + {7f135b15-3caa-4ac0-b528-5eca9982391b}, !- Zone Air Exhaust Port List + {f134c149-7af0-4959-94ea-0d474ac031b7}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {b44edde4-2a25-45b7-b8b6-442e58fa08f6}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {fff67412-6ac6-4722-9a20-e8f1dc492ecb}, !- Handle + Node 10, !- Name + {f134c149-7af0-4959-94ea-0d474ac031b7}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {f134c149-7af0-4959-94ea-0d474ac031b7}, !- Handle + Connection 10, !- Name + {3328af8e-f3e2-4c86-b0e8-dc9e1d7ff66b}, !- Source Object + 11, !- Outlet Port + {fff67412-6ac6-4722-9a20-e8f1dc492ecb}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {7658fd10-e320-4670-b760-763b8f88f89d}, !- Handle + Port List 19, !- Name + {3328af8e-f3e2-4c86-b0e8-dc9e1d7ff66b}; !- HVAC Component + +OS:PortList, + {7f135b15-3caa-4ac0-b528-5eca9982391b}, !- Handle + Port List 20, !- Name + {3328af8e-f3e2-4c86-b0e8-dc9e1d7ff66b}; !- HVAC Component + +OS:Sizing:Zone, + {0306d84d-f5c0-48e2-b9c1-2e7a8046c968}, !- Handle + {3328af8e-f3e2-4c86-b0e8-dc9e1d7ff66b}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {a21e2a57-be6b-4789-bf6c-80986643d72b}, !- Handle + Zone HVAC Equipment List 10, !- Name + {3328af8e-f3e2-4c86-b0e8-dc9e1d7ff66b}; !- Thermal Zone + +OS:ThermalZone, + {403b7ca0-99b3-4839-9d8d-865f3b02bc68}, !- Handle + Thermal Zone: Space 104, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {af8b8b51-8445-4af4-af26-d3aac4534457}, !- Zone Air Inlet Port List + {3993edb5-2233-460d-8c8b-814337936e91}, !- Zone Air Exhaust Port List + {d2c4735d-bca0-461f-985d-3f1d76159380}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {3f7708e6-1b6a-44ef-a321-43d9234b65cb}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {4d66a6f1-48e8-4677-8742-4da77ab81c3a}, !- Handle + Node 11, !- Name + {d2c4735d-bca0-461f-985d-3f1d76159380}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {d2c4735d-bca0-461f-985d-3f1d76159380}, !- Handle + Connection 11, !- Name + {403b7ca0-99b3-4839-9d8d-865f3b02bc68}, !- Source Object + 11, !- Outlet Port + {4d66a6f1-48e8-4677-8742-4da77ab81c3a}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {af8b8b51-8445-4af4-af26-d3aac4534457}, !- Handle + Port List 21, !- Name + {403b7ca0-99b3-4839-9d8d-865f3b02bc68}; !- HVAC Component + +OS:PortList, + {3993edb5-2233-460d-8c8b-814337936e91}, !- Handle + Port List 22, !- Name + {403b7ca0-99b3-4839-9d8d-865f3b02bc68}; !- HVAC Component + +OS:Sizing:Zone, + {3564f7bd-902b-4a47-800a-ee7624c52721}, !- Handle + {403b7ca0-99b3-4839-9d8d-865f3b02bc68}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {17792eec-e712-479f-89c8-80826d11a1e8}, !- Handle + Zone HVAC Equipment List 11, !- Name + {403b7ca0-99b3-4839-9d8d-865f3b02bc68}; !- Thermal Zone + +OS:Rendering:Color, + {fa3b7706-ff20-4f88-96ca-0648471ebb30}, !- Handle + Rendering Color 9, !- Name + 60, !- Rendering Red Value + 179, !- Rendering Green Value + 113; !- Rendering Blue Value + +OS:Rendering:Color, + {b340fbb0-dffb-49c1-847d-d6f53001b31d}, !- Handle + Rendering Color 10, !- Name + 135, !- Rendering Red Value + 206, !- Rendering Green Value + 250; !- Rendering Blue Value + +OS:Rendering:Color, + {8b21d1cf-0f9e-47c0-a092-26f787c3e57f}, !- Handle + Rendering Color 11, !- Name + 128, !- Rendering Red Value + 128, !- Rendering Green Value + 0; !- Rendering Blue Value + +OS:Rendering:Color, + {e88bb11f-d3b6-49d8-9d66-947685cdb150}, !- Handle + Rendering Color 12, !- Name + 60, !- Rendering Red Value + 179, !- Rendering Green Value + 113; !- Rendering Blue Value + +OS:Rendering:Color, + {910fa816-5ee5-4681-a301-a36c162cccc4}, !- Handle + Rendering Color 13, !- Name + 223, !- Rendering Red Value + 255, !- Rendering Green Value + 130, !- Rendering Blue Value + 255; !- Rendering Alpha Value + +OS:Rendering:Color, + {d66d8496-0397-4826-9a42-a050eb30017e}, !- Handle + Rendering Color 14, !- Name + 233, !- Rendering Red Value + 150, !- Rendering Green Value + 122; !- Rendering Blue Value + +OS:Rendering:Color, + {b44edde4-2a25-45b7-b8b6-442e58fa08f6}, !- Handle + Rendering Color 15, !- Name + 32, !- Rendering Red Value + 178, !- Rendering Green Value + 170; !- Rendering Blue Value + +OS:Rendering:Color, + {3f7708e6-1b6a-44ef-a321-43d9234b65cb}, !- Handle + Rendering Color 16, !- Name + 218, !- Rendering Red Value + 112, !- Rendering Green Value + 214; !- Rendering Blue Value + +OS:ClimateZones, + {05391cbe-8d3b-48b2-a01a-cb9ee275f6c6}, !- 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:RadianceParameters, + {7f737743-8745-4084-a242-865daf07da9f}, !- 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, + {b5ba1333-993c-4d87-b32f-8837419824bf}, !- Handle + 1.25, !- Heating Sizing Factor + 1.15; !- Cooling Sizing Factor + +OS:ProgramControl, + {195f5885-936a-49ba-a8d5-e7626d019d0e}; !- Handle + +OS:OutputControl:ReportingTolerances, + {40074586-0786-44c6-aadd-1729ae5e7bed}; !- Handle + +OS:ConvergenceLimits, + {a8a021e0-0dd3-46c3-b86b-333f74752bb1}; !- Handle + +OS:ShadowCalculation, + {4289aa6a-73b0-433b-9d8d-b895a1147bf5}, !- Handle + 7, !- Calculation Frequency + 15000; !- Maximum Figures in Shadow Overlap Calculations + +OS:SurfaceConvectionAlgorithm:Inside, + {e5840977-8da9-4ea8-a8b6-be082427c794}, !- Handle + TARP; !- Algorithm + +OS:SurfaceConvectionAlgorithm:Outside, + {88aee493-1eff-4284-b213-38258fc70cde}, !- Handle + DOE-2; !- Algorithm + +OS:HeatBalanceAlgorithm, + {a0546d6d-703f-4c40-bb33-173d0d9b4506}, !- Handle + ConductionTransferFunction, !- Algorithm + 200; !- Surface Temperature Upper Limit {F} + +OS:ZoneAirHeatBalanceAlgorithm, + {ed2d56e9-9ac2-4e3a-badb-46c4f0bc5684}, !- Handle + AnalyticalSolution; !- Algorithm + +OS:ZoneAirContaminantBalance, + {caa55812-a6bb-4099-b13c-2bd08e1282e4}; !- Handle + +OS:ZoneCapacitanceMultiplier:ResearchSpecial, + {318705f2-38ac-40df-a4c5-9ea50d969cbf}, !- Handle + , !- Temperature Capacity Multiplier + , !- Humidity Capacity Multiplier + ; !- Carbon Dioxide Capacity Multiplier + +OS:RunPeriod, + {b33837ca-82e8-4a4b-a29f-bf2ade54c307}, !- 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:DefaultSurfaceConstructions, + {5750823c-bae4-4180-9363-5e4bff9040b0}, ! Handle + 000 Interior DefSurfCons 1, ! Name + {07092fd3-9719-4a3a-851a-61e694c7b2e6}, ! Floor Construction Name + {e6ff48b6-cff2-4bb8-aed2-df3c527afd49}, ! Wall Construction Name + {305c1cce-364a-4113-af8d-9f7f6db58322}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {234b33fe-3dc4-4931-8dcd-974d5830fcc2}, ! Handle + 000 Ground DefSurfCons 1, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Wall Construction Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}; ! Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {53c598e6-015c-4846-b54a-9168cc613369}, ! Handle + 000 Interior DefSubCons 1, ! Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Fixed Window Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Operable Window Construction Name + {1ccc9476-7cb0-40f8-bffb-3d7f62f32c66}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:StandardsInformation:Construction, + {2aab25d7-24a3-4396-9a48-8b72559b0040}, !- Handle + {c0f458f6-c6a5-4b88-a3a9-d68fae9265f0}; !- Construction Name + +OS:WeatherFile, + {af4f8e62-45d6-4889-a3cc-6d37be4a4e1b}, !- Handle + Chicago Ohare Intl Ap, !- City + IL, !- State Province Region + USA, !- Country + TMY3, !- Data Source + 725300, !- WMO Number + 41.98, !- Latitude {deg} + -87.92, !- Longitude {deg} + -6, !- Time Zone {hr} + 201, !- Elevation {m} + file:files/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw, !- Url + 616D8F9A; !- Checksum + +OS:Site, + {5707ee96-9305-49c6-9d74-86fe9fa2181f}, !- Handle + Site 1, !- Name + 41.98, !- Latitude {deg} + -87.92, !- Longitude {deg} + -6, !- Time Zone {hr} + 201, !- Elevation {m} + ; !- Terrain + +OS:SizingPeriod:DesignDay, + {0dfe058a-cea4-4df2-a6bd-7a72e056b89a}, !- Handle + Chicago Ohare Intl Ap Ann Clg .4% Condns Enth=>MDB, !- Name + 31.4, !- Maximum Dry-Bulb Temperature {C} + 10.5, !- Daily Dry-Bulb Temperature Range {deltaC} + 79200, !- Humidity Indicating Conditions at Maximum Dry-Bulb {BasedOnField A3} + 98934, !- Barometric Pressure {Pa} + 5.2, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- Snow Indicator + 21, !- Day of Month + 7, !- Month + SummerDesignDay, !- Day Type + 0, !- Daylight Saving Time Indicator + Enthalpy, !- Humidity Indicating Type + , !- Humidity Indicating Day Schedule Name + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.455, !- ASHRAE Taub {dimensionless} + 2.05; !- ASHRAE Taud {dimensionless} + +OS:SizingPeriod:DesignDay, + {bd60c02f-488c-49c0-9d23-b67722672ba5}, !- Handle + Chicago Ohare Intl Ap Ann Clg .4% Condns DP=>MDB, !- Name + 28.9, !- Maximum Dry-Bulb Temperature {C} + 10.5, !- Daily Dry-Bulb Temperature Range {deltaC} + 23.8, !- Humidity Indicating Conditions at Maximum Dry-Bulb {BasedOnField A3} + 98934, !- Barometric Pressure {Pa} + 5.2, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- Snow Indicator + 21, !- Day of Month + 7, !- Month + SummerDesignDay, !- Day Type + 0, !- Daylight Saving Time Indicator + Dewpoint, !- Humidity Indicating Type + , !- Humidity Indicating Day Schedule Name + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.455, !- ASHRAE Taub {dimensionless} + 2.05; !- ASHRAE Taud {dimensionless} + +OS:SizingPeriod:DesignDay, + {6131f19b-caeb-41ba-a6d4-001e50e83da1}, !- Handle + Chicago Ohare Intl Ap Ann Htg 99.6% Condns DB, !- Name + -20, !- Maximum Dry-Bulb Temperature {C} + 0, !- Daily Dry-Bulb Temperature Range {deltaC} + -20, !- Humidity Indicating Conditions at Maximum Dry-Bulb {BasedOnField A3} + 98934, !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- 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 + +OS:SizingPeriod:DesignDay, + {1667dba9-acd7-47c0-9d7b-8ac6eb72c189}, !- Handle + Chicago Ohare Intl Ap Ann Clg .4% Condns WB=>MDB, !- Name + 31.2, !- Maximum Dry-Bulb Temperature {C} + 10.5, !- Daily Dry-Bulb Temperature Range {deltaC} + 25.5, !- Humidity Indicating Conditions at Maximum Dry-Bulb {BasedOnField A3} + 98934, !- Barometric Pressure {Pa} + 5.2, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- 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 + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.455, !- ASHRAE Taub {dimensionless} + 2.05; !- ASHRAE Taud {dimensionless} + +OS:SizingPeriod:DesignDay, + {50a6275b-aa70-45a9-a8d4-e2c2adaae7b1}, !- Handle + Chicago Ohare Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name + 33.3, !- Maximum Dry-Bulb Temperature {C} + 10.5, !- Daily Dry-Bulb Temperature Range {deltaC} + 23.7, !- Humidity Indicating Conditions at Maximum Dry-Bulb {BasedOnField A3} + 98934, !- Barometric Pressure {Pa} + 5.2, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- 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 + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.455, !- ASHRAE Taub {dimensionless} + 2.05; !- ASHRAE Taud {dimensionless} + +OS:SizingPeriod:DesignDay, + {176321f3-80a7-4357-ab67-007bf51fa466}, !- Handle + Chicago Ohare Intl Ap Ann Hum_n 99.6% Condns DP=>MCDB, !- Name + -19.2, !- Maximum Dry-Bulb Temperature {C} + 0, !- Daily Dry-Bulb Temperature Range {deltaC} + -25.7, !- Humidity Indicating Conditions at Maximum Dry-Bulb {BasedOnField A3} + 98934, !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- Snow Indicator + 21, !- Day of Month + 1, !- Month + WinterDesignDay, !- Day Type + 0, !- Daylight Saving Time Indicator + Dewpoint, !- 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 + +OS:SizingPeriod:DesignDay, + {8fe215ab-b928-46ba-a5a6-d6f9e739513d}, !- Handle + Chicago Ohare Intl Ap Ann Htg Wind 99.6% Condns WS=>MCDB, !- Name + -3.5, !- Maximum Dry-Bulb Temperature {C} + 0, !- Daily Dry-Bulb Temperature Range {deltaC} + -3.5, !- Humidity Indicating Conditions at Maximum Dry-Bulb {BasedOnField A3} + 98934, !- Barometric Pressure {Pa} + 12.4, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- 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 + +OS:LifeCycleCost:Parameters, + {7eb3eb44-b4f4-4439-bf6f-9402044f7352}, !- Handle + FEMP, !- 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 + , !- Tax Rate + , !- Depreciation Method + Yes; !- Use NIST Fuel Escalation Rates + diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/tests/AedgOfficeHvacWshpDoas_Test.rb b/lib/measures/replace_hvac_with_gshp_and_doas/tests/AedgOfficeHvacWshpDoas_Test.rb new file mode 100644 index 0000000..6ea4c5a --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/tests/AedgOfficeHvacWshpDoas_Test.rb @@ -0,0 +1,59 @@ +# frozen_string_literal: true + +require 'openstudio' + +require 'openstudio/ruleset/ShowRunnerOutput' + +require "#{File.dirname(__FILE__)}/../measure.rb" + +require 'test/unit' + +class AedgOfficeHvacWshpDoas_Test < Test::Unit::TestCase + def test_AedgOfficeHvacWshpDoas + # create an instance of the measure + measure = AedgOfficeHvacWshpDoas.new + + # create an instance of a runner + runner = OpenStudio::Ruleset::OSRunner.new + + # load the test model + translator = OpenStudio::OSVersion::VersionTranslator.new + path = OpenStudio::Path.new(File.dirname(__FILE__) + '/AEDG_HVAC_GenericTestModel_0225_a.osm') + model = translator.loadModel(path) + assert(!model.empty?) + model = model.get + + # get arguments and test that they are what we are expecting + arguments = measure.arguments(model) + assert_equal(3, arguments.size) + assert_equal('ceilingReturnPlenumSpaceType', arguments[0].name) + assert_equal('costTotalHVACSystem', arguments[1].name) + assert_equal('remake_schedules', arguments[2].name) + + # set argument values to good values and run the measure on model with spaces + argument_map = OpenStudio::Ruleset::OSArgumentMap.new + + ceilingReturnPlenumSpaceType = arguments[0].clone + assert(ceilingReturnPlenumSpaceType.setValue('Plenum')) + argument_map['ceilingReturnPlenumSpaceType'] = ceilingReturnPlenumSpaceType + + costTotalHVACSystem = arguments[1].clone + assert(costTotalHVACSystem.setValue(15000.0)) + argument_map['costTotalHVACSystem'] = costTotalHVACSystem + + remake_schedules = arguments[2].clone + assert(remake_schedules.setValue(true)) + argument_map['remake_schedules'] = remake_schedules + + measure.run(model, runner, argument_map) + result = runner.result + show_output(result) + assert(result.value.valueName == 'Success') + # assert(result.warnings.size == 1) + # assert(result.info.size == 2) + + # save the model for testing purposes + output_file_path = OpenStudio::Path.new(File.dirname(__FILE__) + '/test.osm') + model.save(output_file_path, true) + end +end diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/tests/ReplaceHVACwithGSHPandDOAS_Test.rb b/lib/measures/replace_hvac_with_gshp_and_doas/tests/ReplaceHVACwithGSHPandDOAS_Test.rb new file mode 100644 index 0000000..4d81fc6 --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/tests/ReplaceHVACwithGSHPandDOAS_Test.rb @@ -0,0 +1,173 @@ +# frozen_string_literal: true + +require 'openstudio' + +require 'openstudio/ruleset/ShowRunnerOutput' + +require "#{File.dirname(__FILE__)}/../measure.rb" + +require 'test/unit' + +class ReplaceHVACWithGSHPAndDOAS_Test < Test::Unit::TestCase + def test_yes_plenums_doas_on_classrooms_and_cafeteria + # create an instance of the measure + measure = ReplaceHVACWithGSHPAndDOAS.new + + # create an instance of a runner + runner = OpenStudio::Ruleset::OSRunner.new + + # load the test model + translator = OpenStudio::OSVersion::VersionTranslator.new + path = OpenStudio::Path.new(File.dirname(__FILE__) + '/AEDG_HVAC_GenericTestModel_0225_a.osm') + model = translator.loadModel(path) + assert(!model.empty?) + model = model.get + + # get arguments and test that they are what we are expecting + arguments = measure.arguments(model) + assert_equal(25, arguments.size) + + # set argument values to good values and run the measure on model with spaces + argument_map = OpenStudio::Ruleset::OSArgumentMap.new + + count = -1 + + ceiling_return_plenum_space_type = arguments[count += 1].clone + assert(ceiling_return_plenum_space_type.setValue('Plenum')) + argument_map['ceiling_return_plenum_space_type'] = ceiling_return_plenum_space_type + + # ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom + space_type = arguments[count += 1].clone + assert(space_type.setValue(true)) + argument_map['ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom'] = space_type + + # ASHRAE 90.1-2004 SecondarySchool Cafeteria + space_type = arguments[count += 1].clone + assert(space_type.setValue(true)) + argument_map['ASHRAE 90.1-2004 SecondarySchool Cafeteria'] = space_type + + # ASHRAE 90.1-2004 SecondarySchool Gym + space_type = arguments[count += 1].clone + assert(space_type.setValue(false)) + argument_map['ASHRAE 90.1-2004 SecondarySchool Gym'] = space_type + + # ASHRAE 90.1-2004 SecondarySchool Office + space_type = arguments[count += 1].clone + assert(space_type.setValue(false)) + argument_map['ASHRAE 90.1-2004 SecondarySchool Office'] = space_type + + # Plenum + space_type = arguments[count += 1].clone + assert(space_type.setValue(false)) + argument_map['Plenum'] = space_type + + gshp_htg_cop = arguments[count += 1].clone + assert(gshp_htg_cop.setValue(4.5)) + argument_map['gshp_htg_cop'] = gshp_htg_cop + + gshp_clg_eer = arguments[count += 1].clone + assert(gshp_clg_eer.setValue(15.0)) + argument_map['gshp_clg_eer'] = gshp_clg_eer + + gshp_fan_type = arguments[count += 1].clone + assert(gshp_fan_type.setValue('ECM')) + argument_map['gshp_fan_type'] = gshp_fan_type + + bore_hole_no = arguments[count += 1].clone + assert(bore_hole_no.setValue(160)) + argument_map['bore_hole_no'] = bore_hole_no + + bore_hole_length = arguments[count += 1].clone + assert(bore_hole_length.setValue(150)) + argument_map['bore_hole_length'] = bore_hole_length + + bore_hole_radius = arguments[count += 1].clone + assert(bore_hole_radius.setValue(7)) + argument_map['bore_hole_radius'] = bore_hole_radius + + ground_k_value = arguments[count += 1].clone + assert(ground_k_value.setValue(0.70)) + argument_map['ground_k_value'] = ground_k_value + + grout_k_value = arguments[count += 1].clone + assert(grout_k_value.setValue(0.80)) + argument_map['grout_k_value'] = grout_k_value + + supplemental_boiler = arguments[count += 1].clone + assert(supplemental_boiler.setValue('Yes')) + argument_map['supplemental_boiler'] = supplemental_boiler + + boiler_cap = arguments[count += 1].clone + assert(boiler_cap.setValue(600)) + argument_map['boiler_cap'] = boiler_cap + + boiler_eff = arguments[count += 1].clone + assert(boiler_eff.setValue(0.85)) + argument_map['boiler_eff'] = boiler_eff + + boiler_fuel_type = arguments[count += 1].clone + assert(boiler_fuel_type.setValue('Electricity')) + argument_map['boiler_fuel_type'] = boiler_fuel_type + + boiler_hw_st = arguments[count += 1].clone + assert(boiler_hw_st.setValue(125)) + argument_map['boiler_hw_st'] = boiler_hw_st + + doas_fan_type = arguments[count += 1].clone + assert(doas_fan_type.setValue('Constant')) + argument_map['doas_fan_type'] = doas_fan_type + + doas_erv = arguments[count += 1].clone + assert(doas_erv.setValue('rotary wheel w/ economizer lockout')) + argument_map['doas_erv'] = doas_erv + + doas_evap = arguments[count += 1].clone + assert(doas_evap.setValue('Direct Evaporative Cooler')) + argument_map['doas_evap'] = doas_evap + + doas_dx_eer = arguments[count += 1].clone + assert(doas_dx_eer.setValue(11.0)) + argument_map['doas_dx_eer'] = doas_dx_eer + + cost_total_hvac_system = arguments[count += 1].clone + assert(cost_total_hvac_system.setValue(15000.0)) + argument_map['cost_total_hvac_system'] = cost_total_hvac_system + + remake_schedules = arguments[count += 1].clone + assert(remake_schedules.setValue(true)) + argument_map['remake_schedules'] = remake_schedules + + # Run the measure + measure.run(model, runner, argument_map) + result = runner.result + show_output(result) + assert(result.value.valueName == 'Success') + + # Save the model for testing purposes + output_file_path = OpenStudio::Path.new(File.dirname(__FILE__) + '/test_yes_plenums_doas_on_classrooms_and_cafeteria.osm') + model.save(output_file_path, true) + + # Each thermal zone that contains a space of space types + # ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom or + # ASHRAE 90.1-2004 SecondarySchool Cafeteria + # should be connected to an airloop and contain + # All other thermal zones should not be connected to an airloop. + model.getThermalZones.each do |zone| + zone.spaces.each do |space| + space_type = space.spaceType + if space_type.is_initialized + space_type = space_type.get + if space_type.name.get == 'ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom' || space_type.name.get == 'ASHRAE 90.1-2004 SecondarySchool Cafeteria' + assert(zone.airLoopHVAC.is_initialized) + assert_equal(zone.equipment.size, 2) + assert(zone.equipment[0].to_AirTerminalSingleDuctUncontrolled.is_initialized) + assert(zone.equipment[1].to_ZoneHVACWaterToAirHeatPump.is_initialized) + else + assert(zone.airLoopHVAC.empty?) + assert_equal(zone.equipment.size, 0) + end + end + end + end + end +end diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/tests/measure-backup-1.rb b/lib/measures/replace_hvac_with_gshp_and_doas/tests/measure-backup-1.rb new file mode 100644 index 0000000..7664027 --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/tests/measure-backup-1.rb @@ -0,0 +1,430 @@ +# frozen_string_literal: true + +# see the URL below for information on how to write OpenStudio measures +# http://openstudio.nrel.gov/openstudio-measure-writing-guide + +# see the URL below for information on using life cycle cost objects in OpenStudio +# http://openstudio.nrel.gov/openstudio-life-cycle-examples + +# see the URL below for access to C++ documentation on model objects (click on "model" in the main window to view model objects) +# http://openstudio.nrel.gov/sites/openstudio.nrel.gov/files/nv_data/cpp_documentation_it/model/html/namespaces.html + +# load OpenStudio measure libraries +require "#{File.dirname(__FILE__)}/resources/OsLib_AedgMeasures" +require "#{File.dirname(__FILE__)}/resources/OsLib_HelperMethods" +require "#{File.dirname(__FILE__)}/resources/OsLib_HVAC" +require "#{File.dirname(__FILE__)}/resources/OsLib_Schedules" + +# start the measure +class WSHPwithDOASMoreDesignParameters < OpenStudio::Ruleset::ModelUserScript + # define the name that a user will see, this method may be deprecated as + # the display name in PAT comes from the name field in measure.xml + def name + return 'WSHPwithDOASMoreDesignParameters' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # create an argument for a space type to be used in the model, to see if one should be mapped as ceiling return air plenum + spaceTypes = model.getSpaceTypes + usedSpaceTypes_handle = OpenStudio::StringVector.new + usedSpaceTypes_displayName = OpenStudio::StringVector.new + spaceTypes.each do |spaceType| # TODO: - I need to update this to use helper so GUI sorts by display name + if !spaceType.spaces.empty? # only show space types used in the building + usedSpaceTypes_handle << spaceType.handle.to_s + usedSpaceTypes_displayName << spaceType.name.to_s + end + end + + # make an argument for space type + ceilingReturnPlenumSpaceType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('ceilingReturnPlenumSpaceType', usedSpaceTypes_handle, usedSpaceTypes_displayName, false) + ceilingReturnPlenumSpaceType.setDisplayName('This space type should be part of a ceiling return air plenum.') + # ceilingReturnPlenumSpaceType.setDefaultValue("We don't want a default, this is an optional argument") + args << ceilingReturnPlenumSpaceType + + # Heating COP of WSHP + wshpHeatingCOP = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('wshpHeatingCOP', false) + wshpHeatingCOP.setDisplayName('WSHP AHRI Heating COP') + wshpHeatingCOP.setDefaultValue(4.0) + args << wshpHeatingCOP + + # Cooling EER of WSHP + wshpCoolingEER = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('wshpCoolingEER', false) + wshpCoolingEER.setDisplayName('WSHP AHRI Cooling EER') + wshpCoolingEER.setDefaultValue(14) + args << wshpCoolingEER + + # WSHP Fan Type PSC or ECM + fanChs = OpenStudio::StringVector.new + fanChs << 'PSC' + fanChs << 'ECM' + wshpFanType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('wshpFanType', fanChs, true) # note ECM fan type may correspond to different set of heat pump performance curves + wshpFanType.setDisplayName('WSHP Fan Type: PSC or ECM?') + wshpFanType.setDefaultValue('PSC') + args << wshpFanType + + # Condenser Loop Cooling Temperature + condLoopCoolingTemp = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('condLoopCoolingTemp', false) + condLoopCoolingTemp.setDisplayName('Condenser Loop Cooling Temperature (F)') + condLoopCoolingTemp.setDefaultValue(90) + args << condLoopCoolingTemp + + # Condenser Loop Heating Temperature + condLoopHeatingTemp = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('condLoopHeatingTemp', false) + condLoopHeatingTemp.setDisplayName('Condenser Loop Heating Temperature (F)') + condLoopHeatingTemp.setDefaultValue(60) + args << condLoopHeatingTemp + + # Cooling Tower + coolingTowerWB = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('coolingTowerWB', false) + coolingTowerWB.setDisplayName('Cooling Tower Design Wet Bulb (F)') + coolingTowerWB.setDefaultValue(68) + args << coolingTowerWB + + coolingTowerApproach = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('coolingTowerApproach', false) + coolingTowerApproach.setDisplayName('Cooling Tower Design Approach (F)') + coolingTowerApproach.setDefaultValue(7.0) + args << coolingTowerApproach + + coolingTowerDeltaT = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('coolingTowerDeltaT', false) + coolingTowerDeltaT.setDisplayName('Cooling Tower Design Delta T (F)') + coolingTowerDeltaT.setDefaultValue(10.0) + args << coolingTowerDeltaT + + # Boiler Efficiency + boilerEff = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('boilerEff', false) + boilerEff.setDisplayName('Boiler Thermal Efficiency') + boilerEff.setDefaultValue(0.9) + args << boilerEff + + # Boiler fuel Type + fuelChs = OpenStudio::StringVector.new + fuelChs << 'NaturalGas' + fuelChs << 'PropaneGas' + fuelChs << 'FuelOil#1' + fuelChs << 'FuelOil#2' + fuelChs << 'Electricity' + boilerFuelType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('boilerFuelType', fuelChs, false) + boilerFuelType.setDisplayName('Boiler Fuel Type') + boilerFuelType.setDefaultValue('NaturalGas') + args << boilerFuelType + + # boiler Hot water supply temperature + boilerHWST = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('boilerHWST', false) + boilerHWST.setDisplayName('Boiler Design Heating Water Outlet Temperature (F)') + boilerHWST.setDefaultValue(120) + args << boilerHWST + + # DOAS Fan Type + doasFanChs = OpenStudio::StringVector.new + doasFanChs << 'Constant' + doasFanChs << 'Variable' + doasFanType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasFanType', doasFanChs, true) + doasFanType.setDisplayName('DOAS Fan Flow Control - Variable means DCV controls') + doasFanType.setDefaultValue('Variable') + args << doasFanType + + # DOAS Energy Recovery + ervChs = OpenStudio::StringVector.new + ervChs << 'plate w/o economizer lockout' + ervChs << 'plate w/ economizer lockout' + ervChs << 'rotary wheel w/o economizer lockout' + ervChs << 'rotary wheel w/ economizer lockout' + ervChs << 'none' + doasERV = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasERV', ervChs, true) + doasERV.setDisplayName('DOAS Energy Recovery?') + doasERV.setDefaultValue('none') + args << doasERV + + # DOAS Evaporative Cooling + evapChs = OpenStudio::StringVector.new + evapChs << 'Direct Evaporative Cooler' + evapChs << 'none' + doasEvap = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasEvap', evapChs, true) + doasEvap.setDisplayName('DOAS Direct Evaporative Cooling?') + doasEvap.setDefaultValue('none') + args << doasEvap + + # DOAS DX Cooling + doasDXEER = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('doasDXEER', false) + doasDXEER.setDisplayName('DOAS DX Cooling EER') + doasDXEER.setDefaultValue(10.0) + args << doasDXEER + + # make an argument for material and installation cost + # todo - I would like to split the costing out to the air loops weighted by area of building served vs. just sticking it on the building + costTotalHVACSystem = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('costTotalHVACSystem', true) + costTotalHVACSystem.setDisplayName('Total Cost for HVAC System ($).') + costTotalHVACSystem.setDefaultValue(0.0) + args << costTotalHVACSystem + + # make an argument to remove existing costs + remake_schedules = OpenStudio::Ruleset::OSArgument.makeBoolArgument('remake_schedules', true) + remake_schedules.setDisplayName('Apply recommended availability and ventilation schedules for air handlers?') + remake_schedules.setDefaultValue(true) + args << remake_schedules + + return args + end # end the arguments method + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + ### START INPUTS + # assign the user inputs to variables + ceilingReturnPlenumSpaceType = runner.getOptionalWorkspaceObjectChoiceValue('ceilingReturnPlenumSpaceType', user_arguments, model) + costTotalHVACSystem = runner.getDoubleArgumentValue('costTotalHVACSystem', user_arguments) + remake_schedules = runner.getBoolArgumentValue('remake_schedules', user_arguments) + + # check that spaceType was chosen and exists in model + ceilingReturnPlenumSpaceTypeCheck = OsLib_HelperMethods.checkOptionalChoiceArgFromModelObjects(ceilingReturnPlenumSpaceType, 'ceilingReturnPlenumSpaceType', 'to_SpaceType', runner, user_arguments) + ceilingReturnPlenumSpaceTypeCheck == false ? (return false) : (ceilingReturnPlenumSpaceType = ceilingReturnPlenumSpaceTypeCheck['modelObject']) + # default building/ secondary space types + standardBuildingTypeTest = ['Office'] # ML Not used yet + secondarySpaceTypeTest = [] # empty for office + primarySpaceType = 'Office' + primaryHVAC = { 'doas' => true, 'fan' => 'Variable', 'heat' => 'Gas', 'cool' => 'SingleDX' } # xf notes: need to change + secondaryHVAC = { 'fan' => 'None', 'heat' => 'None', 'cool' => 'None' } # ML not used for office; leave or empty? + zoneHVAC = 'WSHP' + chillerType = 'None' # set to none if chiller not used + radiantChillerType = 'None' # set to none if not radiant system + allHVAC = { 'primary' => primaryHVAC, 'secondary' => secondaryHVAC, 'zone' => zoneHVAC } + + wshpHeatingCOP = runner.getDoubleArgumentValue('wshpHeatingCOP', user_arguments) + wshpCoolingEER = runner.getDoubleArgumentValue('wshpCoolingEER', user_arguments) + wshpFanType = runner.getStringArgumentValue('wshpFanType', user_arguments) + condLoopCoolingTemp = runner.getDoubleArgumentValue('condLoopCoolingTemp', user_arguments) + condLoopHeatingTemp = runner.getDoubleArgumentValue('condLoopHeatingTemp', user_arguments) + coolingTowerWB = runner.getDoubleArgumentValue('coolingTowerWB', user_arguments) + coolingTowerApproach = runner.getDoubleArgumentValue('coolingTowerApproach', user_arguments) + coolingTowerDeltaT = runner.getDoubleArgumentValue('coolingTowerDeltaT', user_arguments) + boilerEff = runner.getDoubleArgumentValue('boilerEff', user_arguments) + boilerFuelType = runner.getStringArgumentValue('boilerFuelType', user_arguments) + boilerHWST = runner.getDoubleArgumentValue('boilerHWST', user_arguments) + doasFanType = runner.getStringArgumentValue('doasFanType', user_arguments) + doasERV = runner.getStringArgumentValue('doasERV', user_arguments) + doasEvap = runner.getStringArgumentValue('doasEvap', user_arguments) + doasDXEER = runner.getDoubleArgumentValue('doasDXEER', user_arguments) + + ### END INPUTS + + ### START SORT ZONES + options = { 'standardBuildingTypeTest' => standardBuildingTypeTest, # ML Not used yet + 'secondarySpaceTypeTest' => secondarySpaceTypeTest, + 'ceilingReturnPlenumSpaceType' => ceilingReturnPlenumSpaceType } + zonesSorted = OsLib_HVAC.sortZones(model, runner, options) + zonesPrimary = zonesSorted['zonesPrimary'] + zonesSecondary = zonesSorted['zonesSecondary'] + zonesPlenum = zonesSorted['zonesPlenum'] + zonesUnconditioned = zonesSorted['zonesUnconditioned'] + ### END SORT ZONES + + ### START REPORT INITIAL CONDITIONS + OsLib_HVAC.reportConditions(model, runner, 'initial') + ### END REPORT INITIAL CONDITIONS + + ### START ASSIGN HVAC SCHEDULES + options = { 'primarySpaceType' => primarySpaceType, + 'allHVAC' => allHVAC, + 'remake_schedules' => remake_schedules } + schedulesHVAC = OsLib_HVAC.assignHVACSchedules(model, runner, options) + # assign schedules + primary_SAT_schedule = schedulesHVAC['primary_sat'] + building_HVAC_schedule = schedulesHVAC['hvac'] + building_ventilation_schedule = schedulesHVAC['ventilation'] + make_hot_water_plant = false + unless schedulesHVAC['hot_water'].nil? + hot_water_setpoint_schedule = schedulesHVAC['hot_water'] + make_hot_water_plant = true + end + make_chilled_water_plant = false + unless schedulesHVAC['chilled_water'].nil? + chilled_water_setpoint_schedule = schedulesHVAC['chilled_water'] + make_chilled_water_plant = true + end + make_radiant_hot_water_plant = false + unless schedulesHVAC['radiant_hot_water'].nil? + radiant_hot_water_setpoint_schedule = schedulesHVAC['radiant_hot_water'] + make_radiant_hot_water_plant = true + end + make_radiant_chilled_water_plant = false + unless schedulesHVAC['radiant_chilled_water'].nil? + radiant_chilled_water_setpoint_schedule = schedulesHVAC['radiant_chilled_water'] + make_radiant_chilled_water_plant = true + end + unless schedulesHVAC['hp_loop'].nil? + heat_pump_loop_setpoint_schedule = schedulesHVAC['hp_loop'] + end + unless schedulesHVAC['hp_loop_cooling'].nil? + heat_pump_loop_cooling_setpoint_schedule = schedulesHVAC['hp_loop_cooling'] + end + unless schedulesHVAC['hp_loop_heating'].nil? + heat_pump_loop_heating_setpoint_schedule = schedulesHVAC['hp_loop_heating'] + end + unless schedulesHVAC['mean_radiant_heating'].nil? + mean_radiant_heating_setpoint_schedule = schedulesHVAC['mean_radiant_heating'] + end + unless schedulesHVAC['mean_radiant_cooling'].nil? + mean_radiant_cooling_setpoint_schedule = schedulesHVAC['mean_radiant_cooling'] + end + ### END ASSIGN HVAC SCHEDULES + + ### START REMOVE EQUIPMENT + OsLib_HVAC.removeEquipment(model, runner) + ### END REMOVE EQUIPMENT + + ### START CREATE NEW PLANTS + # create new plants + # hot water plant + if make_hot_water_plant + hot_water_plant = OsLib_HVAC.createHotWaterPlant(model, runner, hot_water_setpoint_schedule, 'Hot Water', boilerEff, boilerFuelType, boilerHWST) + end + # chilled water plant + if make_chilled_water_plant + chilled_water_plant = OsLib_HVAC.createChilledWaterPlant(model, runner, chilled_water_setpoint_schedule, 'Chilled Water', chillerType) + end + # radiant hot water plant + if make_radiant_hot_water_plant + radiant_hot_water_plant = OsLib_HVAC.createHotWaterPlant(model, runner, radiant_hot_water_setpoint_schedule, 'Radiant Hot Water') + end + # chilled water plant + if make_radiant_chilled_water_plant + radiant_chilled_water_plant = OsLib_HVAC.createChilledWaterPlant(model, runner, radiant_chilled_water_setpoint_schedule, 'Radiant Chilled Water', radiantChillerType) + end + # condenser loop + # need condenser loop if there is a water-cooled chiller or if there is a water source heat pump loop + options = {} + options['zoneHVAC'] = zoneHVAC + if zoneHVAC.include? 'SHP' + options['loop_setpoint_schedule'] = heat_pump_loop_setpoint_schedule + options['cooling_setpoint_schedule'] = heat_pump_loop_cooling_setpoint_schedule + options['heating_setpoint_schedule'] = heat_pump_loop_heating_setpoint_schedule + end + condenserLoops = OsLib_HVAC.createCondenserLoop(model, runner, options, boilerEff, boilerFuelType, boilerHWST, coolingTowerWB, coolingTowerApproach, coolingTowerDeltaT, condLoopCoolingTemp, condLoopHeatingTemp) + unless condenserLoops['condenser_loop'].nil? + condenser_loop = condenserLoops['condenser_loop'] + end + unless condenserLoops['heat_pump_loop'].nil? + heat_pump_loop = condenserLoops['heat_pump_loop'] + end + ### END CREATE NEW PLANTS + + ### START CREATE PRIMARY AIRLOOPS + # populate inputs hash for create primary airloops method + options = {} + options['zonesPrimary'] = zonesPrimary + options['primaryHVAC'] = primaryHVAC + options['zoneHVAC'] = zoneHVAC + if primaryHVAC['doas'] + options['hvac_schedule'] = building_ventilation_schedule + options['ventilation_schedule'] = building_ventilation_schedule + else + # primary HVAC is multizone VAV + if zoneHVAC == 'DualDuct' + # primary system is a multizone VAV that cools only (primary system ventilation schedule is set to always off; hvac set to always on) + options['hvac_schedule'] = model.alwaysOnDiscreteSchedule + else + # primary system is multizone VAV that cools and ventilates + options['hvac_schedule'] = building_HVAC_schedule + options['ventilation_schedule'] = building_ventilation_schedule + end + end + options['primary_sat_schedule'] = primary_SAT_schedule + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + primary_airloops = OsLib_HVAC.createPrimaryAirLoops(model, runner, options, doasFanType, doasERV, doasEvap, doasDXEER) + ### END CREATE PRIMARY AIRLOOPS + + ### START CREATE SECONDARY AIRLOOPS + # populate inputs hash for create primary airloops method + options = {} + options['zonesSecondary'] = zonesSecondary + options['secondaryHVAC'] = secondaryHVAC + options['hvac_schedule'] = building_HVAC_schedule + options['ventilation_schedule'] = building_ventilation_schedule + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + secondary_airloops = OsLib_HVAC.createSecondaryAirLoops(model, runner, options) + ### END CREATE SECONDARY AIRLOOPS + + ### START ASSIGN PLENUMS + options = { 'zonesPrimary' => zonesPrimary, 'zonesPlenum' => zonesPlenum } + zone_plenum_hash = OsLib_HVAC.validateAndAddPlenumZonesToSystem(model, runner, options) + ### END ASSIGN PLENUMS + + ### START CREATE PRIMARY ZONE EQUIPMENT + options = {} + options['zonesPrimary'] = zonesPrimary + options['zoneHVAC'] = zoneHVAC + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + if zoneHVAC.include? 'SHP' + options['heat_pump_loop'] = heat_pump_loop + end + if zoneHVAC == 'DualDuct' + options['ventilation_schedule'] = building_ventilation_schedule + end + if zoneHVAC == 'Radiant' + options['radiant_hot_water_plant'] = radiant_hot_water_plant + options['radiant_chilled_water_plant'] = radiant_chilled_water_plant + options['mean_radiant_heating_setpoint_schedule'] = mean_radiant_heating_setpoint_schedule + options['mean_radiant_cooling_setpoint_schedule'] = mean_radiant_cooling_setpoint_schedule + end + OsLib_HVAC.createPrimaryZoneEquipment(model, runner, options, wshpCoolingEER, wshpHeatingCOP, wshpFanType) + ### END CREATE PRIMARY ZONE EQUIPMENT + + # START ADD DCV + options = {} + unless zoneHVAC == 'DualDuct' + options['primary_airloops'] = primary_airloops + end + options['secondary_airloops'] = secondary_airloops + options['allHVAC'] = allHVAC + OsLib_HVAC.addDCV(model, runner, options) + # END ADD DCV + + # TODO: - add in lifecycle costs + expected_life = 25 + years_until_costs_start = 0 + costHVAC = costTotalHVACSystem + lcc_mat = OpenStudio::Model::LifeCycleCost.createLifeCycleCost('HVAC System', model.getBuilding, costHVAC, 'CostPerEach', 'Construction', expected_life, years_until_costs_start).get + + # # # # add AEDG tips + aedgTips = ['HV04', 'HV10', 'HV12'] + + # populate how to tip messages + aedgTipsLong = OsLib_AedgMeasures.getLongHowToTips('SmMdOff', aedgTips.uniq.sort, runner) + if !aedgTipsLong + return false # this should only happen if measure writer passes bad values to getLongHowToTips + end + + ### START REPORT FINAL CONDITIONS + OsLib_HVAC.reportConditions(model, runner, 'final') + ### END REPORT FINAL CONDITIONS + + return true + end # end the run method +end # end the measure + +# this allows the measure to be used by the application +WSHPwithDOASMoreDesignParameters.new.registerWithApplication diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/tests/measure-backup.rb b/lib/measures/replace_hvac_with_gshp_and_doas/tests/measure-backup.rb new file mode 100644 index 0000000..dfbceac --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/tests/measure-backup.rb @@ -0,0 +1,432 @@ +# frozen_string_literal: true + +# see the URL below for information on how to write OpenStudio measures +# http://openstudio.nrel.gov/openstudio-measure-writing-guide + +# see the URL below for information on using life cycle cost objects in OpenStudio +# http://openstudio.nrel.gov/openstudio-life-cycle-examples + +# see the URL below for access to C++ documentation on model objects (click on "model" in the main window to view model objects) +# http://openstudio.nrel.gov/sites/openstudio.nrel.gov/files/nv_data/cpp_documentation_it/model/html/namespaces.html + +# load OpenStudio measure libraries +# require "#{File.dirname(__FILE__)}/resources/OsLib_AedgMeasures" +require "#{File.dirname(__FILE__)}/resources/OsLib_HelperMethods" +require "#{File.dirname(__FILE__)}/resources/OsLib_HVAC" +require "#{File.dirname(__FILE__)}/resources/OsLib_Schedules" + +# start the measure +class WSHPwithDOASMoreDesignParameters < OpenStudio::Ruleset::ModelUserScript + # define the name that a user will see, this method may be deprecated as + # the display name in PAT comes from the name field in measure.xml + def name + return 'WSHPwithDOASMoreDesignParameters' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # create an argument for a space type to be used in the model, to see if one should be mapped as ceiling return air plenum + spaceTypes = model.getSpaceTypes + usedSpaceTypes_handle = OpenStudio::StringVector.new + usedSpaceTypes_displayName = OpenStudio::StringVector.new + spaceTypes.each do |spaceType| # TODO: - I need to update this to use helper so GUI sorts by display name + if !spaceType.spaces.empty? # only show space types used in the building + usedSpaceTypes_handle << spaceType.handle.to_s + usedSpaceTypes_displayName << spaceType.name.to_s + end + end + + # make an argument for space type + ceilingReturnPlenumSpaceType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('ceilingReturnPlenumSpaceType', usedSpaceTypes_handle, usedSpaceTypes_displayName, false) + ceilingReturnPlenumSpaceType.setDisplayName('This space type should be part of a ceiling return air plenum.') + # ceilingReturnPlenumSpaceType.setDefaultValue("We don't want a default, this is an optional argument") + args << ceilingReturnPlenumSpaceType + + # Heating COP of WSHP + wshpHeatingCOP = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('wshpHeatingCOP', false) + wshpHeatingCOP.setDisplayName('WSHP AHRI Heating COP') + wshpHeatingCOP.setDefaultValue(4.0) + args << wshpHeatingCOP + + # Cooling EER of WSHP + wshpCoolingEER = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('wshpCoolingEER', false) + wshpCoolingEER.setDisplayName('WSHP AHRI Cooling EER') + wshpCoolingEER.setDefaultValue(14) + args << wshpCoolingEER + + # WSHP Fan Type PSC or ECM + fanChs = OpenStudio::StringVector.new + fanChs << 'PSC' + fanChs << 'ECM' + wshpFanType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('wshpFanType', fanChs, true) # note ECM fan type may correspond to different set of heat pump performance curves + wshpFanType.setDisplayName('WSHP Fan Type: PSC or ECM?') + wshpFanType.setDefaultValue('PSC') + args << wshpFanType + + # Condenser Loop Cooling Temperature + condLoopCoolingTemp = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('condLoopCoolingTemp', false) + condLoopCoolingTemp.setDisplayName('Condenser Loop Cooling Temperature (F)') + condLoopCoolingTemp.setDefaultValue(90) + args << condLoopCoolingTemp + + # Condenser Loop Heating Temperature + condLoopHeatingTemp = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('condLoopHeatingTemp', false) + condLoopHeatingTemp.setDisplayName('Condenser Loop Heating Temperature (F)') + condLoopHeatingTemp.setDefaultValue(60) + args << condLoopHeatingTemp + + # Cooling Tower + coolingTowerWB = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('coolingTowerWB', false) + coolingTowerWB.setDisplayName('Cooling Tower Design Wet Bulb (F)') + coolingTowerWB.setDefaultValue(68) + args << coolingTowerWB + + coolingTowerApproach = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('coolingTowerApproach', false) + coolingTowerApproach.setDisplayName('Cooling Tower Design Approach (F)') + coolingTowerApproach.setDefaultValue(7.0) + args << coolingTowerApproach + + coolingTowerDeltaT = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('coolingTowerDeltaT', false) + coolingTowerDeltaT.setDisplayName('Cooling Tower Design Delta T (F)') + coolingTowerDeltaT.setDefaultValue(10.0) + args << coolingTowerDeltaT + + # Boiler Efficiency + boilerEff = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('boilerEff', false) + boilerEff.setDisplayName('Boiler Thermal Efficiency') + boilerEff.setDefaultValue(0.9) + args << boilerEff + + # Boiler fuel Type + fuelChs = OpenStudio::StringVector.new + fuelChs << 'NaturalGas' + fuelChs << 'PropaneGas' + fuelChs << 'FuelOil#1' + fuelChs << 'FuelOil#2' + fuelChs << 'Electricity' + boilerFuelType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('boilerFuelType', fuelChs, false) + boilerFuelType.setDisplayName('Boiler Fuel Type') + boilerFuelType.setDefaultValue('NaturalGas') + args << boilerFuelType + + # boiler Hot water supply temperature + boilerHWST = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('boilerHWST', false) + boilerHWST.setDisplayName('Boiler Design Heating Water Outlet Temperature (F)') + boilerHWST.setDefaultValue(120) + args << boilerHWST + + # DOAS Fan Type + doasFanChs = OpenStudio::StringVector.new + doasFanChs << 'Constant' + doasFanChs << 'Variable' + doasFanType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasFanType', doasFanChs, true) + doasFanType.setDisplayName('DOAS Fan Flow Control - Variable means DCV controls') + doasFanType.setDefaultValue('Variable') + args << doasFanType + + # DOAS Energy Recovery + ervChs = OpenStudio::StringVector.new + ervChs << 'plate w/o economizer lockout' + ervChs << 'plate w/ economizer lockout' + ervChs << 'rotary wheel w/o economizer lockout' + ervChs << 'rotary wheel w/ economizer lockout' + ervChs << 'none' + doasERV = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasERV', ervChs, true) + doasERV.setDisplayName('DOAS Energy Recovery?') + doasERV.setDefaultValue('none') + args << doasERV + + # DOAS Evaporative Cooling + evapChs = OpenStudio::StringVector.new + evapChs << 'Direct Evaporative Cooler' + evapChs << 'none' + doasEvap = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasEvap', evapChs, true) + doasEvap.setDisplayName('DOAS Direct Evaporative Cooling?') + doasEvap.setDefaultValue('none') + args << doasEvap + + # DOAS DX Cooling + doasDXEER = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('doasDXEER', false) + doasDXEER.setDisplayName('DOAS DX Cooling EER') + doasDXEER.setDefaultValue(10.0) + args << doasDXEER + + # make an argument for material and installation cost + # todo - I would like to split the costing out to the air loops weighted by area of building served vs. just sticking it on the building + costTotalHVACSystem = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('costTotalHVACSystem', true) + costTotalHVACSystem.setDisplayName('Total Cost for HVAC System ($).') + costTotalHVACSystem.setDefaultValue(0.0) + args << costTotalHVACSystem + + # make an argument to remove existing costs + remake_schedules = OpenStudio::Ruleset::OSArgument.makeBoolArgument('remake_schedules', true) + remake_schedules.setDisplayName('Apply recommended availability and ventilation schedules for air handlers?') + remake_schedules.setDefaultValue(true) + args << remake_schedules + + return args + end # end the arguments method + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + wshpHeatingCOP = runner.getDoubleArgumentValue('wshpHeatingCOP', user_arguments) + wshpCoolingEER = runner.getDoubleArgumentValue('wshpCoolingEER', user_arguments) + wshpFanType = runner.getStringArgumentValue('wshpFanType', user_arguments) + condLoopCoolingTemp = runner.getDoubleArgumentValue('condLoopCoolingTemp', user_arguments) + condLoopHeatingTemp = runner.getDoubleArgumentValue('condLoopHeatingTemp', user_arguments) + coolingTowerWB = runner.getDoubleArgumentValue('coolingTowerWB', user_arguments) + coolingTowerApproach = runner.getDoubleArgumentValue('coolingTowerApproach', user_arguments) + coolingTowerDeltaT = runner.getDoubleArgumentValue('coolingTowerDeltaT', user_arguments) + boilerEff = runner.getDoubleArgumentValue('boilerEff', user_arguments) + boilerFuelType = runner.getStringArgumentValue('boilerFuelType', user_arguments) + boilerHWST = runner.getDoubleArgumentValue('boilerHWST', user_arguments) + doasFanType = runner.getStringArgumentValue('doasFanType', user_arguments) + doasERV = runner.getStringArgumentValue('doasERV', user_arguments) + doasEvap = runner.getStringArgumentValue('doasEvap', user_arguments) + doasDXEER = runner.getDoubleArgumentValue('doasDXEER', user_arguments) + + ### START INPUTS + # assign the user inputs to variables + ceilingReturnPlenumSpaceType = runner.getOptionalWorkspaceObjectChoiceValue('ceilingReturnPlenumSpaceType', user_arguments, model) + costTotalHVACSystem = runner.getDoubleArgumentValue('costTotalHVACSystem', user_arguments) + remake_schedules = runner.getBoolArgumentValue('remake_schedules', user_arguments) + # check that spaceType was chosen and exists in model + ceilingReturnPlenumSpaceTypeCheck = OsLib_HelperMethods.checkOptionalChoiceArgFromModelObjects(ceilingReturnPlenumSpaceType, 'ceilingReturnPlenumSpaceType', 'to_SpaceType', runner, user_arguments) + ceilingReturnPlenumSpaceTypeCheck == false ? (return false) : (ceilingReturnPlenumSpaceType = ceilingReturnPlenumSpaceTypeCheck['modelObject']) + # default building/ secondary space types + standardBuildingTypeTest = ['Office'] # ML Not used yet + secondarySpaceTypeTest = [] # empty for office + primarySpaceType = 'Office' + if doasFanType == 'Variable' + primaryHVAC = { 'doas' => true, 'fan' => 'Variable', 'heat' => 'Gas', 'cool' => 'SingleDX' } + else + primaryHVAC = { 'doas' => true, 'fan' => 'Constant', 'heat' => 'Gas', 'cool' => 'SingleDX' } + end + secondaryHVAC = { 'fan' => 'None', 'heat' => 'None', 'cool' => 'None' } # ML not used for office; leave or empty? + zoneHVAC = 'WSHP' + chillerType = 'None' # set to none if chiller not used + radiantChillerType = 'None' # set to none if not radiant system + allHVAC = { 'primary' => primaryHVAC, 'secondary' => secondaryHVAC, 'zone' => zoneHVAC } + + ### END INPUTS + + ### START SORT ZONES + options = { 'standardBuildingTypeTest' => standardBuildingTypeTest, # ML Not used yet + 'secondarySpaceTypeTest' => secondarySpaceTypeTest, + 'ceilingReturnPlenumSpaceType' => ceilingReturnPlenumSpaceType } + zonesSorted = OsLib_HVAC.sortZones(model, runner, options) + zonesPrimary = zonesSorted['zonesPrimary'] + zonesSecondary = zonesSorted['zonesSecondary'] + zonesPlenum = zonesSorted['zonesPlenum'] + zonesUnconditioned = zonesSorted['zonesUnconditioned'] + ### END SORT ZONES + + ### START REPORT INITIAL CONDITIONS + OsLib_HVAC.reportConditions(model, runner, 'initial') + ### END REPORT INITIAL CONDITIONS + + ### START ASSIGN HVAC SCHEDULES + options = { 'primarySpaceType' => primarySpaceType, + 'allHVAC' => allHVAC, + 'remake_schedules' => remake_schedules } + schedulesHVAC = OsLib_HVAC.assignHVACSchedules(model, runner, options) + # assign schedules + primary_SAT_schedule = schedulesHVAC['primary_sat'] + building_HVAC_schedule = schedulesHVAC['hvac'] + building_ventilation_schedule = schedulesHVAC['ventilation'] + make_hot_water_plant = false + unless schedulesHVAC['hot_water'].nil? + hot_water_setpoint_schedule = schedulesHVAC['hot_water'] + make_hot_water_plant = true + end + make_chilled_water_plant = false + unless schedulesHVAC['chilled_water'].nil? + chilled_water_setpoint_schedule = schedulesHVAC['chilled_water'] + make_chilled_water_plant = true + end + make_radiant_hot_water_plant = false + unless schedulesHVAC['radiant_hot_water'].nil? + radiant_hot_water_setpoint_schedule = schedulesHVAC['radiant_hot_water'] + make_radiant_hot_water_plant = true + end + make_radiant_chilled_water_plant = false + unless schedulesHVAC['radiant_chilled_water'].nil? + radiant_chilled_water_setpoint_schedule = schedulesHVAC['radiant_chilled_water'] + make_radiant_chilled_water_plant = true + end + unless schedulesHVAC['hp_loop'].nil? + heat_pump_loop_setpoint_schedule = schedulesHVAC['hp_loop'] + end + unless schedulesHVAC['hp_loop_cooling'].nil? + heat_pump_loop_cooling_setpoint_schedule = schedulesHVAC['hp_loop_cooling'] + end + unless schedulesHVAC['hp_loop_heating'].nil? + heat_pump_loop_heating_setpoint_schedule = schedulesHVAC['hp_loop_heating'] + end + unless schedulesHVAC['mean_radiant_heating'].nil? + mean_radiant_heating_setpoint_schedule = schedulesHVAC['mean_radiant_heating'] + end + unless schedulesHVAC['mean_radiant_cooling'].nil? + mean_radiant_cooling_setpoint_schedule = schedulesHVAC['mean_radiant_cooling'] + end + ### END ASSIGN HVAC SCHEDULES + + ### START REMOVE EQUIPMENT + OsLib_HVAC.removeEquipment(model, runner) + ### END REMOVE EQUIPMENT + + ### START CREATE NEW PLANTS + # create new plants + # hot water plant + if make_hot_water_plant + hot_water_plant = OsLib_HVAC.createHotWaterPlant(model, runner, hot_water_setpoint_schedule, 'Hot Water', boilerEff, boilerFuelType, boilerHWST) + end + # chilled water plant + if make_chilled_water_plant + chilled_water_plant = OsLib_HVAC.createChilledWaterPlant(model, runner, chilled_water_setpoint_schedule, 'Chilled Water', chillerType) + end + # radiant hot water plant + if make_radiant_hot_water_plant + radiant_hot_water_plant = OsLib_HVAC.createHotWaterPlant(model, runner, radiant_hot_water_setpoint_schedule, 'Radiant Hot Water') + end + # chilled water plant + if make_radiant_chilled_water_plant + radiant_chilled_water_plant = OsLib_HVAC.createChilledWaterPlant(model, runner, radiant_chilled_water_setpoint_schedule, 'Radiant Chilled Water', radiantChillerType) + end + # condenser loop + # need condenser loop if there is a water-cooled chiller or if there is a water source heat pump loop + options = {} + options['zoneHVAC'] = zoneHVAC + if zoneHVAC.include? 'SHP' + options['loop_setpoint_schedule'] = heat_pump_loop_setpoint_schedule + options['cooling_setpoint_schedule'] = heat_pump_loop_cooling_setpoint_schedule + options['heating_setpoint_schedule'] = heat_pump_loop_heating_setpoint_schedule + end + condenserLoops = OsLib_HVAC.createCondenserLoop(model, runner, options, boilerEff, boilerFuelType, boilerHWST, coolingTowerWB, coolingTowerApproach, coolingTowerDeltaT, condLoopCoolingTemp, condLoopHeatingTemp) + unless condenserLoops['condenser_loop'].nil? + condenser_loop = condenserLoops['condenser_loop'] + end + unless condenserLoops['heat_pump_loop'].nil? + heat_pump_loop = condenserLoops['heat_pump_loop'] + end + ### END CREATE NEW PLANTS + + ### START CREATE PRIMARY AIRLOOPS + # populate inputs hash for create primary airloops method + options = {} + options['zonesPrimary'] = zonesPrimary + options['primaryHVAC'] = primaryHVAC + options['zoneHVAC'] = zoneHVAC + if primaryHVAC['doas'] + options['hvac_schedule'] = building_ventilation_schedule + options['ventilation_schedule'] = building_ventilation_schedule + else + # primary HVAC is multizone VAV + if zoneHVAC == 'DualDuct' + # primary system is a multizone VAV that cools only (primary system ventilation schedule is set to always off; hvac set to always on) + options['hvac_schedule'] = model.alwaysOnDiscreteSchedule + else + # primary system is multizone VAV that cools and ventilates + options['hvac_schedule'] = building_HVAC_schedule + options['ventilation_schedule'] = building_ventilation_schedule + end + end + options['primary_sat_schedule'] = primary_SAT_schedule + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + primary_airloops = OsLib_HVAC.createPrimaryAirLoops(model, runner, options, doasFanType, doasERV, doasEvap, doasDXEER) + ### END CREATE PRIMARY AIRLOOPS + + ### START CREATE SECONDARY AIRLOOPS + # populate inputs hash for create primary airloops method + options = {} + options['zonesSecondary'] = zonesSecondary + options['secondaryHVAC'] = secondaryHVAC + options['hvac_schedule'] = building_HVAC_schedule + options['ventilation_schedule'] = building_ventilation_schedule + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + secondary_airloops = OsLib_HVAC.createSecondaryAirLoops(model, runner, options) + ### END CREATE SECONDARY AIRLOOPS + + ### START ASSIGN PLENUMS + options = { 'zonesPrimary' => zonesPrimary, 'zonesPlenum' => zonesPlenum } + zone_plenum_hash = OsLib_HVAC.validateAndAddPlenumZonesToSystem(model, runner, options) + ### END ASSIGN PLENUMS + + ### START CREATE PRIMARY ZONE EQUIPMENT + options = {} + options['zonesPrimary'] = zonesPrimary + options['zoneHVAC'] = zoneHVAC + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + if zoneHVAC.include? 'SHP' + options['heat_pump_loop'] = heat_pump_loop + end + if zoneHVAC == 'DualDuct' + options['ventilation_schedule'] = building_ventilation_schedule + end + if zoneHVAC == 'Radiant' + options['radiant_hot_water_plant'] = radiant_hot_water_plant + options['radiant_chilled_water_plant'] = radiant_chilled_water_plant + options['mean_radiant_heating_setpoint_schedule'] = mean_radiant_heating_setpoint_schedule + options['mean_radiant_cooling_setpoint_schedule'] = mean_radiant_cooling_setpoint_schedule + end + OsLib_HVAC.createPrimaryZoneEquipment(model, runner, options, wshpCoolingEER, wshpHeatingCOP, wshpFanType) + ### END CREATE PRIMARY ZONE EQUIPMENT + + # START ADD DCV + options = {} + unless zoneHVAC == 'DualDuct' + options['primary_airloops'] = primary_airloops + end + options['secondary_airloops'] = secondary_airloops + options['allHVAC'] = allHVAC + OsLib_HVAC.addDCV(model, runner, options) + # END ADD DCV + + # TODO: - add in lifecycle costs + expected_life = 25 + years_until_costs_start = 0 + costHVAC = costTotalHVACSystem + lcc_mat = OpenStudio::Model::LifeCycleCost.createLifeCycleCost('HVAC System', model.getBuilding, costHVAC, 'CostPerEach', 'Construction', expected_life, years_until_costs_start).get + + # # add AEDG tips + # aedgTips = ["HV04","HV10","HV12"] + + # # populate how to tip messages + # aedgTipsLong = OsLib_AedgMeasures.getLongHowToTips("SmMdOff",aedgTips.uniq.sort,runner) + # if not aedgTipsLong + # return false # this should only happen if measure writer passes bad values to getLongHowToTips + # end + + ### START REPORT FINAL CONDITIONS + OsLib_HVAC.reportConditions(model, runner, 'final') + ### END REPORT FINAL CONDITIONS + + return true + end # end the run method +end # end the measure + +# this allows the measure to be used by the application +WSHPwithDOASMoreDesignParameters.new.registerWithApplication diff --git a/lib/measures/replace_hvac_with_gshp_and_doas/tests/test_arguments.csv b/lib/measures/replace_hvac_with_gshp_and_doas/tests/test_arguments.csv new file mode 100644 index 0000000..dd38c03 --- /dev/null +++ b/lib/measures/replace_hvac_with_gshp_and_doas/tests/test_arguments.csv @@ -0,0 +1 @@ +AEDG_HVAC_GenericTestModel_0225_a.osm,Plenum,15000,true diff --git a/lib/measures/replace_simple_glazing/measure.rb b/lib/measures/replace_simple_glazing/measure.rb new file mode 100644 index 0000000..f6c90fe --- /dev/null +++ b/lib/measures/replace_simple_glazing/measure.rb @@ -0,0 +1,86 @@ +# frozen_string_literal: true + +# see the URL below for information on how to write OpenStudio measures +# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ + +# start the measure +class ReplaceSimpleGlazing < OpenStudio::Ruleset::ModelUserScript + # human readable name + def name + return 'replace_simple_glazing' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # glazing u_value + u_value = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('u_value', true) + u_value.setDisplayName('U-value in W/(K-m2)') + u_value.setDefaultValue(1.65) + args << u_value + + # glazing shgc + shgc = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('shgc', true) + shgc.setDisplayName('shgc') + shgc.setDefaultValue(0.20) + args << shgc + + # glazing visible transmittance + vt = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('vt', true) + vt.setDisplayName('vt') + vt.setDefaultValue(0.81) + args << vt + + return args + end + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # assign the user inputs to variables + u_value = runner.getDoubleArgumentValue('u_value', user_arguments) + shgc = runner.getDoubleArgumentValue('shgc', user_arguments) + vt = runner.getDoubleArgumentValue('vt', user_arguments) + + # replace simple glazing window parameters + materials = model.getMaterials + materials.each do |material| + if material.to_SimpleGlazing.is_initialized + material_type_glazingsimple = material.to_SimpleGlazing.get + + # get the original value for reporting + u_value_old = nil + shgc_old = nil + vt_old = nil + + u_value_old = material_type_glazingsimple.uFactor + shgc_old = material_type_glazingsimple.solarHeatGainCoefficient + vt_old = material_type_glazingsimple.visibleTransmittance + + # set values with user inputs + material_type_glazingsimple.setUFactor(u_value) + material_type_glazingsimple.setSolarHeatGainCoefficient(shgc) + material_type_glazingsimple.setVisibleTransmittance(vt) + + # report initial condition of model + runner.registerInitialCondition("The building started with #{u_value_old} U-value, #{shgc_old} SHGC, #{vt_old} Visible Transmittance.") + + # report final condition of model + runner.registerFinalCondition("The building finished with #{u_value} U-value, #{shgc} SHGC, #{vt} Visible Transmittance.") + + end + end + + return true + end +end + +# register the measure to be used by the application +ReplaceSimpleGlazing.new.registerWithApplication diff --git a/lib/measures/replace_simple_glazing/measure.xml b/lib/measures/replace_simple_glazing/measure.xml new file mode 100644 index 0000000..1ad9665 --- /dev/null +++ b/lib/measures/replace_simple_glazing/measure.xml @@ -0,0 +1,78 @@ + + 3.0 + replace_simple_glazing + 3be83df0-8db1-47a8-8b26-aa12f9f17116 + f181d8cb-18a9-4c8e-b287-a3293633d35e + 20180717T215712Z + 9C8A26EB + ReplaceSimpleGlazing + replace_simple_glazing + + + + + u_value + U-value in W/(K-m2) + Double + true + false + 1.65 + + + shgc + shgc + Double + true + false + 0.2 + + + vt + vt + Double + true + false + 0.81 + + + + + + Envelope.Fenestration + + + + Measure Type + ModelMeasure + string + + + Intended Software Tool + Apply Measure Now + string + + + Intended Software Tool + OpenStudio Application + string + + + Intended Software Tool + Parametric Analysis Tool + string + + + + + + OpenStudio + 2.1.0 + 2.1.0 + + measure.rb + rb + script + 95A32DDE + + + diff --git a/lib/measures/set_boiler_thermal_efficiency/measure.rb b/lib/measures/set_boiler_thermal_efficiency/measure.rb new file mode 100644 index 0000000..3ac3c91 --- /dev/null +++ b/lib/measures/set_boiler_thermal_efficiency/measure.rb @@ -0,0 +1,520 @@ +# frozen_string_literal: true + +# see the URL below for information on how to write OpenStudio measures +# http://openstudio.nrel.gov/openstudio-measure-writing-guide + +# see the URL below for access to C++ documentation on model objects (click on "model" in the main window to view model objects) +# http://openstudio.nrel.gov/sites/openstudio.nrel.gov/files/nv_data/cpp_documentation_it/model/html/namespaces.html + +# start the measure +class SetBoilerThermalEfficiency < OpenStudio::Ruleset::ModelUserScript + # define the name that a user will see, this method may be deprecated as + # the display name in PAT comes from the name field in measure.xml + def name + return 'SetBoilerThermalEfficiency' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # Determine how many boilers in model + boiler_handles = OpenStudio::StringVector.new + boiler_display_names = OpenStudio::StringVector.new + + # Get/show all boiler units from current loaded model. + boiler_handles << '0' + boiler_display_names << '*All boilers*' + + i_boiler = 1 + model.getBoilerHotWaters.each do |boiler_water| + if !boiler_water.to_BoilerHotWater.empty? + water_unit = boiler_water.to_BoilerHotWater.get + boiler_handles << i_boiler.to_s + boiler_display_names << water_unit.name.to_s + + i_boiler += 1 + end + end + model.getBoilerSteams.each do |boiler_steam| + if !boiler_steam.to_BoilerSteam.empty? + steam_unit = boiler_water.to_BoilerSteam.get + boiler_handles << i_boiler.to_s + boiler_display_names << steam_unit.name.to_s + i_boiler += 1 + end + end + + if i_boiler == 1 + info_widget = OpenStudio::Ruleset::OSArgument.makeBoolArgument('info_widget', true) + info_widget.setDisplayName('!!!!*** This Measure is not Applicable to loaded Model. Read the description and choose an appropriate baseline model. ***!!!!') + info_widget.setDefaultValue(true) + args << info_widget + return args + end + + boiler_widget = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('boiler_widget', boiler_handles, boiler_display_names, true) + boiler_widget.setDisplayName('Apply the measure to ') + boiler_widget.setDefaultValue(boiler_display_names[0]) + args << boiler_widget + + # Add a check box for specify thermal efficiency manually + input_option_manual = OpenStudio::Ruleset::OSArgument.makeBoolArgument('input_option_manual', false) + input_option_manual.setDisplayName('Option 1, set boiler nominal thermal efficiency to a user defined value') + input_option_manual.setDefaultValue(false) + args << input_option_manual + + # Boiler Thermal Efficiency (default of 0.8) + boiler_thermal_efficiency = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('boiler_thermal_efficiency') + boiler_thermal_efficiency.setDisplayName('Boiler nominal thermal efficiency (between 0 and 1)') + boiler_thermal_efficiency.setDefaultValue(0.8) + args << boiler_thermal_efficiency + + input_option_standard = OpenStudio::Ruleset::OSArgument.makeBoolArgument('input_option_standard', false) + input_option_standard.setDisplayName('Option 2, set boiler nominal thermal efficiency based on ASHRAE Standard 90.1 requirement') + input_option_standard.setDefaultValue(false) + args << input_option_standard + + # Nominal Capacity [W] (default of blank) + nominal_capacity = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('nominal_capacity', false) + nominal_capacity.setDisplayName('Boiler nominal capacity [W] ') + args << nominal_capacity + + # Show fuel type selection + fuel_type_handles = OpenStudio::StringVector.new + fuel_type_display_names = OpenStudio::StringVector.new + + fuel_type_handles << '0' + fuel_type_display_names << 'NaturalGas' + fuel_type_handles << '1' + fuel_type_display_names << 'FuelOil#1' + fuel_type_handles << '2' + fuel_type_display_names << 'FuelOil#2' + + # Make a choice argument for Boiler Fuel Type (default of NaturalGas) + fuel_type_widget = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('fuel_type_widget', fuel_type_handles, fuel_type_display_names, false) + fuel_type_widget.setDisplayName('Fuel type') + fuel_type_widget.setDefaultValue(fuel_type_display_names[0]) + args << fuel_type_widget + + # Show ASHRAE standards + standards_handles = OpenStudio::StringVector.new + standards_display_names = OpenStudio::StringVector.new + + standards_handles << '0' + standards_handles << '1' + standards_handles << '2' + standards_handles << '3' + standards_handles << '4' + + standards_display_names << '' + standards_display_names << 'ASHRAE 90.1-2004' + standards_display_names << 'ASHRAE 90.1-2007' + standards_display_names << 'ASHRAE 90.1-2010' + standards_display_names << 'ASHRAE 90.1-2013' + + standards_widget = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('standards_widget', standards_handles, standards_display_names, false) + standards_widget.setDisplayName('ASHRAE Standards 90.1') + standards_widget.setDefaultValue(standards_display_names[0]) + args << standards_widget + + return args + end # end the arguments method + + def getMinEfficiencyWaterBoiler(standard, capacity, heating_type) + min_efficiency = 0 + standard_list = ['ASHRAE 90.1-2004', 'ASHRAE 90.1-2007', 'ASHRAE 90.1-2010', 'ASHRAE 90.1-2013'] + heating_type_list = ['Gas', 'Oil'] + if (!standard_list.include? standard) || (!heating_type_list.include? heating_type) + return nil + end + + if standard == standard_list[0] + if heating_type == heating_type_list[0] + if capacity < 87862 + min_efficiency = 0.8 + elsif capacity < 732188 + min_efficiency = 0.75 + else + min_efficiency = 0.85 + end + else + if capacity < 87862 + min_efficiency = 0.8 + elsif capacity < 732188 + min_efficiency = 0.75 + else + min_efficiency = 0.7925 + end + end + elsif standard == standard_list[1] + if heating_type == heating_type_list[0] + if capacity < 87862 + min_efficiency = 0.8 + elsif capacity < 732188 + min_efficiency = 0.8 + else + min_efficiency = 0.8125 + end + else + if capacity < 87862 + min_efficiency = 0.8 + elsif capacity < 732188 + min_efficiency = 0.82 + else + min_efficiency = 0.8325 + end + end + elsif standard == standard_list[3] + if heating_type == heating_type_list[0] + if capacity < 87862 + min_efficiency = 0.8 + elsif capacity < 732188 + min_efficiency = 0.8 + else + min_efficiency = 0.8125 + end + else + if capacity < 87862 + min_efficiency = 0.8 + elsif capacity < 732188 + min_efficiency = 0.82 + else + min_efficiency = 0.8325 + end + end + elsif standard == standard_list[4] + if heating_type == heating_type_list[0] + if capacity < 87862 + min_efficiency = 0.82 + elsif capacity < 732188 + min_efficiency = 0.8 + else + min_efficiency = 0.8125 + end + else + if capacity < 87862 + min_efficiency = 0.84 + elsif capacity < 732188 + min_efficiency = 0.82 + else + min_efficiency = 0.8325 + end + end + end + + return min_efficiency + end + + def getMinEfficiencySteamBoiler(standard, capacity, heating_type) + min_efficiency = 0 + standard_list = ['ASHRAE 90.1-2004', 'ASHRAE 90.1-2007', 'ASHRAE 90.1-2010', 'ASHRAE 90.1-2013'] + heating_type_list = ['Gas', 'Oil'] + if (!standard_list.include? standard) || (!heating_type_list.include? heating_type) + return nil + end + + if standard == standard_list[0] + if heating_type == heating_type_list[0] + if capacity < 87862 + min_efficiency = 0.75 + elsif capacity < 732188 + min_efficiency = 0.75 + else + min_efficiency = 0.7925 + end + else + if capacity < 87862 + min_efficiency = 0.8 + elsif capacity < 732188 + min_efficiency = 0.75 + else + min_efficiency = 0.7925 + end + end + elsif standard == standard_list[1] + if heating_type == heating_type_list[0] + if capacity < 87862 + min_efficiency = 0.75 + elsif capacity < 732188 + min_efficiency = 0.79 + else + min_efficiency = 0.79 + end + else + if capacity < 87862 + min_efficiency = 0.8 + elsif capacity < 732188 + min_efficiency = 0.81 + else + min_efficiency = 0.81 + end + end + elsif standard == standard_list[3] + if heating_type == heating_type_list[0] + if capacity < 87862 + min_efficiency = 0.75 + elsif capacity < 732188 + min_efficiency = 0.79 + else + min_efficiency = 0.79 + end + else + if capacity < 87862 + min_efficiency = 0.8 + elsif capacity < 732188 + min_efficiency = 0.81 + else + min_efficiency = 0.81 + end + end + else standard == standard_list[4] + if heating_type == heating_type_list[0] + if capacity < 87862 + min_efficiency = 0.8 + elsif capacity < 732188 + min_efficiency = 0.79 + else + min_efficiency = 0.79 + end + else + if capacity < 87862 + min_efficiency = 0.82 + elsif capacity < 732188 + min_efficiency = 0.81 + else + min_efficiency = 0.81 + min_efficiency = 0.81 + end + end + end + + return min_efficiency + end + + def changeThermalEfficiency(model, boiler_index, efficiency_value_new, runner) + i_boiler = 0 + # loop through to find water boiler + model.getBoilerHotWaters.each do |boiler_water| + if !boiler_water.to_BoilerHotWater.empty? + i_boiler += 1 + if (boiler_index != 0) && (boiler_index != i_boiler) + next + end + + water_unit = boiler_water.to_BoilerHotWater.get + unit_name = water_unit.name + + # check capacity, fuel type, and thermal efficiency + thermal_efficiency_old = water_unit.nominalThermalEfficiency + + # if thermal_efficiency_old.nil? + if !thermal_efficiency_old.is_a? Numeric + runner.registerInfo("Initial: The Thermal Efficiency for '#{unit_name}' was not set.") + else + runner.registerInfo("Initial: The Thermal Efficiency for '#{unit_name}' was not set.") + end + + water_unit.setNominalThermalEfficiency(efficiency_value_new) + runner.registerInfo("Final: The Thermal Efficiency for '#{unit_name}' was #{efficiency_value_new}") + end + end + + # loop through to find steam boiler + model.getBoilerSteams.each do |boiler_steam| + if !boiler_steam.to_BoilerSteam.empty? + i_boiler += 1 + if (boiler_index != 0) && (boiler_index != i_boiler) + next + end + + steam_unit = boiler.to_BoilerSteam.get + steam_unit_fueltype = steam_unit.fuelType + unit_name = steam_unit.name + + thermal_efficiency_old = steam_unit.theoreticalEfficiency + + if !thermal_efficiency_old.is_a? Numeric + runner.registerInfo("Initial: The Thermal Efficiency for '#{unit_name}' was not set.") + else + runner.registerInfo("Initial: The Thermal Efficiency for '#{unit_name}' was #{efficiency_value_new}.") + end + + steam_unit.setNominalThermalEfficiency(efficiency_value_new) + runner.registerInfo("Final: The Thermal Efficiency for '#{unit_name}' was #{efficiency_value_new}") + end + end + end + + def changeThermalEfficiencyByStandard(model, boiler_index, efficiency_value_water, efficiency_value_steam, nominal_capacity, fuel_type, runner) + i_boiler = 0 + # loop through to find water boiler + model.getBoilerHotWaters.each do |boiler_water| + if !boiler_water.to_BoilerHotWater.empty? + i_boiler += 1 + if (boiler_index != 0) && (boiler_index != i_boiler) + next + end + + water_unit = boiler_water.to_BoilerHotWater.get + unit_name = water_unit.name + + # check capacity, fuel type, and thermal efficiency + thermal_efficiency_old = water_unit.nominalThermalEfficiency + + # if thermal_efficiency_old.nil? + if !thermal_efficiency_old.is_a? Numeric + runner.registerInfo("Initial: The Thermal Efficiency for '#{unit_name}' was not set.") + else + runner.registerInfo("Initial: The Thermal Efficiency for '#{unit_name}' was not set.") + end + + water_unit.setNominalThermalEfficiency(efficiency_value_water) + runner.registerInfo("Final: The Thermal Efficiency for '#{unit_name}' was #{efficiency_value_water}") + + # In case there is information about capacity and fuel_type + if !nominal_capacity.nil? + water_unit.setFuelType(fuel_type) + + nominal_capacity_old = water_unit.nominalCapacity + if !nominal_capacity_old.is_a? Numeric + runner.registerInfo("Initial: The Nominal Capacity for '#{unit_name}' was not set.") + else + runner.registerInfo("Initial: The Nominal Capacity for '#{unit_name}' was #{nominal_capacity_old}.") + end + water_unit.setNominalCapacity(nominal_capacity) + runner.registerInfo("Final: The Nominal Capacity for '#{unit_name}' was #{nominal_capacity}") + end + end + end + + # loop through to find steam boiler + model.getBoilerSteams.each do |boiler_steam| + if !boiler_steam.to_BoilerSteam.empty? + i_boiler += 1 + if (boiler_index != 0) && (boiler_index != i_boiler) + next + end + + steam_unit = boiler.to_BoilerSteam.get + steam_unit_fueltype = steam_unit.fuelType + unit_name = steam_unit.name + + thermal_efficiency_old = steam_unit.theoreticalEfficiency + + if !thermal_efficiency_old.is_a? Numeric + runner.registerInfo("Initial: The Thermal Efficiency for '#{unit_name}' was not set.") + else + runner.registerInfo("Initial: The Thermal Efficiency for '#{unit_name}' was #{thermal_efficiency_old}.") + end + + steam_unit.setNominalThermalEfficiency(efficiency_value_steam) + runner.registerInfo("Final: The Thermal Efficiency for '#{unit_name}' was #{efficiency_value_steam}") + + # In case there is information about capacity and fuel_type + if !nominal_capacity.nil? + steam_unit.setFuelType(fuel) + + nominal_capacity_old = steam_unit.nominalCapacity + if !nominal_capacity_old.is_a? Numeric + runner.registerInfo("Initial: The Nominal Capacity for '#{unit_name}' was not set.") + else + runner.registerInfo("Initial: The Nominal Capacity for '#{unit_name}' was #{nominal_capacity_old}.") + end + steam_unit.setNominalCapacity(nominal_capacity) + runner.registerInfo("Final: The Nominal Capacity for '#{unit_name}' was #{nominal_capacity}") + end + end + end + end + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # Determine if the measure is applicable to the model, if not just return and no changes are made. + info_widget = runner.getOptionalWorkspaceObjectChoiceValue('info_widget', user_arguments, model) + if !(info_widget.nil? || info_widget.empty?) + runner.registerInfo('This measure is not applicable.') + return true + end + + # assign the user inputs to variables + boiler_widget = runner.getOptionalWorkspaceObjectChoiceValue('boiler_widget', user_arguments, model) + standards_widget = runner.getOptionalWorkspaceObjectChoiceValue('standards_widget', user_arguments, model) + nominal_capacity_method_widget = runner.getOptionalWorkspaceObjectChoiceValue('nominal_capacity_method_widget', user_arguments, model) + fuel_type_widget = runner.getOptionalWorkspaceObjectChoiceValue('fuel_type_widget', user_arguments, model) + + handle = runner.getStringArgumentValue('boiler_widget', user_arguments) + boiler_index = handle.to_i + + # check which method is used, if both are checked used the first one + is_option_manual = runner.getBoolArgumentValue('input_option_manual', user_arguments) + is_option_standard = runner.getBoolArgumentValue('input_option_standard', user_arguments) + + if is_option_manual + boiler_thermal_efficiency = runner.getDoubleArgumentValue('boiler_thermal_efficiency', user_arguments) + + # Check if input is valid + if (boiler_thermal_efficiency < 0) || (boiler_thermal_efficiency > 1) + runner.registerError('Boiler Thermal Efficiency must be between 0 and 1.') + return false + end + + changeThermalEfficiency(model, boiler_index, boiler_thermal_efficiency, runner) + elsif is_option_standard + handle = runner.getStringArgumentValue('standards_widget', user_arguments) + standards_index = handle.to_i + + handle = runner.getStringArgumentValue('fuel_type_widget', user_arguments) + fuel_type_index = handle.to_i + + standard_table = ['', 'ASHRAE 90.1-2004', 'ASHRAE 90.1-2007', 'ASHRAE 90.1-2010', 'ASHRAE 90.1-2013'] + fuel_table = ['Gas', 'Oil', 'Oil'] + fuel_formal_name = ['NaturalGas', 'FuelOil#1', 'FuelOil#2'] + fuel_type = fuel_formal_name[fuel_type_index] + + nominal_capacity = runner.getOptionalDoubleArgumentValue('nominal_capacity', user_arguments) + if nominal_capacity.empty? + runner.registerError('Nominal capacity is not specified.') + return false + else + nominal_capacity = runner.getDoubleArgumentValue('nominal_capacity', user_arguments) + end + # Check if the required inputs + if !nominal_capacity.is_a? Numeric + runner.registerError("'Nominal Capacity' is not specified but required for ASHRAE Standards.") + elsif nominal_capacity < 0 + runner.registerError("'Nominal Capacity' can not be negative.") + # elsif (nominal_capacity < 87862) or (nominal_capacity > 732188) then + # runner.registerError("'Nominal Capacity' should be between 87.862kW and 732.188kW.") + end + + if standards_index <= 0 + runner.registerError('ASHRAE 90.1 standard is not specified.') + return false + else + runner.registerInfo("Final: ASHRAE Standards #{standard_table[standards_index]} is selected.") + end + + water_unit_min_efficiency = getMinEfficiencyWaterBoiler(standard_table[standards_index], nominal_capacity, fuel_table[fuel_type_index]) + steam_unit_min_efficiency = getMinEfficiencySteamBoiler(standard_table[standards_index], nominal_capacity, fuel_table[fuel_type_index]) + + changeThermalEfficiencyByStandard(model, boiler_index, water_unit_min_efficiency, steam_unit_min_efficiency, nominal_capacity, fuel_type, runner) + + else + runner.registerError('You have to specify using either Option 1 or Option 2.') + return false + end + + return true + end # end the run method +end # end the measure + +# this allows the measure to be use by the application +SetBoilerThermalEfficiency.new.registerWithApplication diff --git a/lib/measures/set_boiler_thermal_efficiency/measure.xml b/lib/measures/set_boiler_thermal_efficiency/measure.xml new file mode 100644 index 0000000..569eb1e --- /dev/null +++ b/lib/measures/set_boiler_thermal_efficiency/measure.xml @@ -0,0 +1,78 @@ + + 3.0 + set_boiler_thermal_efficiency + 467eb03a-8f18-4e91-a1b6-2f7eee9aac5b + fc86ee7c-650b-4af0-986d-1a8b4d12da97 + 20180123T182601Z + 3312C49F + SetBoilerThermalEfficiency + SetBoilerThermalEfficiency + Boiler thermal efficiency affects heating energy consumption. The measure offers two options to set the boiler thermal efficiency. Option 1 allows users to specify the efficiency inputs directly. Option 2 determines the boiler thermal efficiency based on the boiler type, the boiler capacity, the fuel type and the prescriptive requirement in ASHRAE Standard 90.1. Option 2 is only applicable to natural gas or oil fired boilers. + The measure loops through the baseline model and identifies the OS:Boiler:HotWater and OS:Boiler:Steam objects. Users can choose one or all boilers from the drop down list to change their thermal efficiency settings. Then users need to select Option 1 or 2 using the check box. For Option 1, a boiler nominal thermal efficiency input is required and it is applied to the selected boilers. For Option 2, users need to specify the fuel type, boiler normal capacity, and the version of Standard 90.1. These inputs and the boiler type (hot water or steam) are used to identify the thermal efficiency requirement in the Standard 90.1, which is used to change the model. The initial and final values of the thermal efficiency are be reported during simulation. + + + info_widget + !!!!*** This Measure is not Applicable to loaded Model. Read the description and choose an appropriate baseline model. ***!!!! + Boolean + true + false + true + + + true + true + + + false + false + + + + + + + + HVAC.Heating + + + + Measure Function + Measure + string + + + Requires EnergyPlus Results + false + boolean + + + Uses SketchUp API + false + boolean + + + Measure Type + ModelMeasure + string + + + + + + OpenStudio + 1.0.0 + 1.8.0 + + measure.rb + rb + script + DB8CAB06 + + + SetBoilerThermalEfficiency_Test.rb + rb + test + 90DEF49F + + + diff --git a/lib/measures/set_boiler_thermal_efficiency/tests/SetBoilerThermalEfficiency_Test.rb b/lib/measures/set_boiler_thermal_efficiency/tests/SetBoilerThermalEfficiency_Test.rb new file mode 100644 index 0000000..f49c8e9 --- /dev/null +++ b/lib/measures/set_boiler_thermal_efficiency/tests/SetBoilerThermalEfficiency_Test.rb @@ -0,0 +1,58 @@ +# frozen_string_literal: true + +require 'openstudio' +require 'openstudio/ruleset/ShowRunnerOutput' + +require "#{File.dirname(__FILE__)}/../measure.rb" + +require 'test/unit' + +class SetBoilerThermalEfficiency_Test < Test::Unit::TestCase + # def setup + # end + + # def teardown + # end + + def test_SetBoilerThermalEfficiency + # create an instance of the measure + measure = SetBoilerThermalEfficiency.new + + # create an instance of a runner + runner = OpenStudio::Ruleset::OSRunner.new + + # make an empty model + model = OpenStudio::Model::Model.new + + # get arguments and test that they are what we are expecting + arguments = measure.arguments(model) + assert_equal(2, arguments.size) + assert_equal('user_name', arguments[0].name) + assert_equal('add_space', arguments[1].name) + assert(!arguments[0].hasDefaultValue) + + # set argument values to bad values and run the measure + argument_map = OpenStudio::Ruleset::OSArgumentMap.new + user_name = arguments[0].clone + assert(user_name.setValue('')) + argument_map['user_name'] = user_name + measure.run(model, runner, argument_map) + result = runner.result + assert(result.value.valueName == 'Fail') + + # set argument values to good values and run the measure on model with spaces + argument_map = OpenStudio::Ruleset::OSArgumentMap.new + user_name = arguments[0].clone + assert(user_name.setValue('david')) + argument_map['user_name'] = user_name + add_space = arguments[1].clone + assert(add_space.setValue(true)) + argument_map['add_space'] = add_space + measure.run(model, runner, argument_map) + result = runner.result + show_output(result) + assert(result.value.valueName == 'Success') + assert(result.warnings.size == 1) + assert(result.info.size == 2) + end +end diff --git a/lib/measures/set_water_heater_efficiency_heat_lossand_peak_water_flow_rate/measure.rb b/lib/measures/set_water_heater_efficiency_heat_lossand_peak_water_flow_rate/measure.rb new file mode 100644 index 0000000..9bc9d1a --- /dev/null +++ b/lib/measures/set_water_heater_efficiency_heat_lossand_peak_water_flow_rate/measure.rb @@ -0,0 +1,207 @@ +# frozen_string_literal: true + +# see the URL below for information on how to write OpenStudio measures +# http://openstudio.nrel.gov/openstudio-measure-writing-guide + +# see the URL below for access to C++ documentation on model objects (click on "model" in the main window to view model objects) +# http://openstudio.nrel.gov/sites/openstudio.nrel.gov/files/nv_data/cpp_documentation_it/model/html/namespaces.html + +# start the measure +class SetWaterHeaterEfficiencyHeatLossandPeakWaterFlowRate < OpenStudio::Ruleset::ModelUserScript + # define the name that a user will see, this method may be deprecated as + # the display name in PAT comes from the name field in measure.xml + def name + return 'SetWaterHeaterEfficiencyHeatLossandPeakWaterFlowRate' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # Determine how many air loops in model + waterheater_handles = OpenStudio::StringVector.new + waterheater_display_names = OpenStudio::StringVector.new + + # Get/show all airloop_hvac which has VAV terminal units from current loaded model. + waterheater_handles << '0' + waterheater_display_names << '*All service water heaters*' + + water_heaters = model.getWaterHeaterMixeds + i_water_heater = 1 + water_heaters.each do |water_heater| + waterheater_handles << i_water_heater.to_s + waterheater_display_names << water_heater.name.to_s + + i_water_heater += 1 + end + + if i_water_heater == 1 + info_widget = OpenStudio::Ruleset::OSArgument.makeBoolArgument('info_widget', true) + info_widget.setDisplayName('!!!!*** This Measure is not Applicable to loaded Model. Read the description and choose an appropriate baseline model. ***!!!!') + info_widget.setDefaultValue(true) + args << info_widget + return args + end + + waterheater_widget = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('waterheater_widget', waterheater_handles, waterheater_display_names, true) + waterheater_widget.setDisplayName('Apply the measure to') + waterheater_widget.setDefaultValue(waterheater_display_names[0]) + args << waterheater_widget + + # make a choice argument for economizer control type + heater_fuel_type_handles = OpenStudio::StringVector.new + heater_fuel_type_display_names = OpenStudio::StringVector.new + + fuel_type_array = ['NaturalGas', 'Electricity', 'PropaneGas', 'FuelOil#1', 'FuelOil#2',\ + 'Coal', 'Diesel', 'Gasoline', 'OtherFuel1', 'OtherFuel2', 'Steam', 'DistrictHeating'] + + for i in 0..fuel_type_array.size - 1 + heater_fuel_type_handles << i.to_s + heater_fuel_type_display_names << fuel_type_array[i] + end + + # make a choice argument for economizer control type + heater_fuel_type_widget = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('heater_fuel_type_widget', heater_fuel_type_handles, heater_fuel_type_display_names, true) + heater_fuel_type_widget.setDisplayName('Fuel type') + heater_fuel_type_widget.setDefaultValue(heater_fuel_type_display_names[0]) + args << heater_fuel_type_widget + + # make an argument for heater Thermal Efficiency (default of 0.8) + heater_thermal_efficiency = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('heater_thermal_efficiency', true) + heater_thermal_efficiency.setDisplayName('Thermal efficiency [between 0 and 1]') + heater_thermal_efficiency.setDefaultValue(0.8) + args << heater_thermal_efficiency + + # make an argument for On/Off Cycle Loss Coefficient to Ambient Temperature [W/K] [W/K] (default of 0.0) + onoff_cycle_loss_coefficient_to_ambient_temperature = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('onoff_cycle_loss_coefficient_to_ambient_temperature', false) + onoff_cycle_loss_coefficient_to_ambient_temperature.setDisplayName('Loss coefficient to ambient temperature [W/K] (optional input, baseline value will be used if empty)') + onoff_cycle_loss_coefficient_to_ambient_temperature.setDefaultValue(0.0) + args << onoff_cycle_loss_coefficient_to_ambient_temperature + + # make an argument for Peak Use Flow Rate [m3/s] (No default, thus to be blank) + peak_use_flow_rate = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('peak_use_flow_rate', false) + peak_use_flow_rate.setDisplayName('Peak water use flow rate [m3/s] (optional input, baseline value will be used if empty)') + peak_use_flow_rate.setDefaultValue(0.000379) + args << peak_use_flow_rate + + return args + end # end the arguments method + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # Determine if the measure is applicable to the model, if not just return and no changes are made. + info_widget = runner.getOptionalWorkspaceObjectChoiceValue('info_widget', user_arguments, model) + if !(info_widget.nil? || info_widget.empty?) + runner.registerInfo('This measure is not applicable.') + return true + end + + # assign the user inputs to variables + waterheater_widget = runner.getOptionalWorkspaceObjectChoiceValue('waterheater_widget', user_arguments, model) + heater_fuel_type_widget = runner.getOptionalWorkspaceObjectChoiceValue('heater_fuel_type_widget', user_arguments, model) + + handle = runner.getStringArgumentValue('waterheater_widget', user_arguments) + waterheater_index = handle.to_i + + fuel_type_array = ['NaturalGas', 'Electricity', 'PropaneGas', 'FuelOil#1', 'FuelOil#2',\ + 'Coal', 'Diesel', 'Gasoline', 'OtherFuel1', 'OtherFuel2', 'Steam', 'DistrictHeating'] + + handle = runner.getStringArgumentValue('heater_fuel_type_widget', user_arguments) + heater_fuel_type = handle.to_i + heater_fuel = fuel_type_array[heater_fuel_type] + + heater_thermal_efficiency = runner.getDoubleArgumentValue('heater_thermal_efficiency', user_arguments) + onoff_cycle_loss_coefficient_to_ambient_temperature = runner.getDoubleArgumentValue('onoff_cycle_loss_coefficient_to_ambient_temperature', user_arguments) + + peak_use_flow_rate = runner.getDoubleArgumentValue('peak_use_flow_rate', user_arguments) + + if heater_thermal_efficiency <= 0 + runner.registerError("Enter a value greater than zero for the 'Heater Thermal Efficiency'.") + elsif heater_thermal_efficiency > 1.0 + runner.registerError("Enter a value less than or equal to 1.0 for the 'HeaterThermal Efficiency'.") + end + + # if not onoff_cycle_loss_coefficient_to_ambient_temperature.empty? + # if onoff_cycle_loss_coefficient_to_ambient_temperature < 0 + # runner.registerError("Enter a value greater than or equal to zero for the 'On/Off Cycle Loss Coefficient to Ambient Temperature'.") + # return false + # elsif onoff_cycle_loss_coefficient_to_ambient_temperature == 0 + # runner.registerInfo("No heat loss was assumed.") + # end + # else + # onoff_cycle_loss_coefficient_to_ambient_temperature = nil + # end + if onoff_cycle_loss_coefficient_to_ambient_temperature.is_a? Numeric + if onoff_cycle_loss_coefficient_to_ambient_temperature < 0 + runner.registerError("Enter a value greater than or equal to zero for the 'On/Off Cycle Loss Coefficient to Ambient Temperature'.") + return false + elsif onoff_cycle_loss_coefficient_to_ambient_temperature == 0 + runner.registerInfo('No heat loss was assumed.') + end + else + onoff_cycle_loss_coefficient_to_ambient_temperature = nil + end + + if peak_use_flow_rate.is_a? Numeric + if peak_use_flow_rate <= 0.0 + runner.registerError("Enter a value greater than zero for the 'Peak Use Flow Rate'.") + end + end + + i_water_heater = 0 + model.getWaterHeaterMixeds.each do |water_heater| + i_water_heater += 1 + + # check if AllAirloop is selected or not. + if (waterheater_index != 0) && (waterheater_index != i_water_heater) + next + end + + if !water_heater.to_WaterHeaterMixed.empty? + unit = water_heater.to_WaterHeaterMixed.get + + # get the original value for reporting + heater_thermal_efficiency_old = unit.heaterThermalEfficiency + oncycle_loss_coeff_old = unit.onCycleLossCoefficienttoAmbientTemperature + offcycle_loss_coeff_old = unit.offCycleLossCoefficienttoAmbientTemperature + peak_use_flow_old = unit.peakUseFlowRate + + runner.registerInfo("Initial: Heater Thermal Efficiency of '#{unit.name}' was #{heater_thermal_efficiency_old}.") + runner.registerInfo("Initial: On Cycle Loss Coefficient to Ambient Temperature of '#{unit.name}' was #{oncycle_loss_coeff_old}.") + runner.registerInfo("Initial: Off Cycle Loss Coefficient to Ambient Temperature'#{unit.name}' was #{offcycle_loss_coeff_old}.") + if peak_use_flow_old.is_a? Numeric + runner.registerInfo("Initial: Peak Use Flow Rate of '#{unit.name}' was #{peak_use_flow_old}.") + end + + # now we have all user inputs, so set them to the new model + unit.setHeaterFuelType(heater_fuel) + unit.setHeaterThermalEfficiency(heater_thermal_efficiency) + if !onoff_cycle_loss_coefficient_to_ambient_temperature.nil? + unit.setOnCycleLossCoefficienttoAmbientTemperature(onoff_cycle_loss_coefficient_to_ambient_temperature) + unit.setOffCycleLossCoefficienttoAmbientTemperature(onoff_cycle_loss_coefficient_to_ambient_temperature) + runner.registerInfo("Final: On/Off Cycle Loss Coefficient to Ambient Temperature of '#{unit.name}' was set to be #{onoff_cycle_loss_coefficient_to_ambient_temperature}.") + end + if peak_use_flow_rate.is_a? Numeric + unit.setPeakUseFlowRate(peak_use_flow_rate) + end + + runner.registerInfo("Final: Heater Thermal Efficiency of '#{unit.name}' was set to be #{heater_thermal_efficiency}.") + if peak_use_flow_rate.is_a? Numeric + runner.registerInfo("Final: Peak Use Flow Rate of '#{unit.name}' was set to be #{peak_use_flow_rate}.") + end + end + end + + return true + end # end the run method +end # end the measure + +# this allows the measure to be use by the application +SetWaterHeaterEfficiencyHeatLossandPeakWaterFlowRate.new.registerWithApplication diff --git a/lib/measures/set_water_heater_efficiency_heat_lossand_peak_water_flow_rate/measure.xml b/lib/measures/set_water_heater_efficiency_heat_lossand_peak_water_flow_rate/measure.xml new file mode 100644 index 0000000..5de5dbf --- /dev/null +++ b/lib/measures/set_water_heater_efficiency_heat_lossand_peak_water_flow_rate/measure.xml @@ -0,0 +1,78 @@ + + 3.0 + set_water_heater_efficiency_heat_lossand_peak_water_flow_rate + dfcfc958-7afd-47e2-a978-f6d4315b7911 + f257dbfb-9a15-4b41-a355-81ff06e66c8e + 20180222T192106Z + 9365BC8B + SetWaterHeaterEfficiencyHeatLossandPeakWaterFlowRate + SetWaterHeaterEfficiencyHeatLossandPeakWaterFlowRate + High efficiency service water heaters with proper insulation save building energy consumption. This measure allows users to modify the water heater fuel type, thermal efficiency, heat loss coefficient to the ambient air temperature, and the peak hot water use flow rate. Note that the peak flow rate change only applies to standalone water heaters, not for those water heaters with plant loop connections. + The measure loops through the baseline model and identifies the OS:WaterHeater:Mixed objects. Users can choose one or all water heaters from the drop down list to change the fuel type, thermal efficiency, heat loss coefficient to the ambient air temperature, and the peak hot water use flow rate. If these parameters are changed through the measure, their initial and final values are reported during simulation. + + + info_widget + !!!!*** This Measure is not Applicable to loaded Model. Read the description and choose an appropriate baseline model. ***!!!! + Boolean + true + false + true + + + true + true + + + false + false + + + + + + + + Service Water Heating.Water Heating + + + + Measure Function + Measure + string + + + Requires EnergyPlus Results + false + boolean + + + Uses SketchUp API + false + boolean + + + Measure Type + ModelMeasure + string + + + + + SetWaterHeaterEfficiencyHeatLossandPeakWaterFlowRate_Test.rb + rb + test + 4C80FA16 + + + + OpenStudio + 1.0.0 + 1.8.0 + + measure.rb + rb + script + A1CA6A60 + + + diff --git a/lib/measures/set_water_heater_efficiency_heat_lossand_peak_water_flow_rate/tests/SetWaterHeaterEfficiencyHeatLossandPeakWaterFlowRate_Test.rb b/lib/measures/set_water_heater_efficiency_heat_lossand_peak_water_flow_rate/tests/SetWaterHeaterEfficiencyHeatLossandPeakWaterFlowRate_Test.rb new file mode 100644 index 0000000..9d96a81 --- /dev/null +++ b/lib/measures/set_water_heater_efficiency_heat_lossand_peak_water_flow_rate/tests/SetWaterHeaterEfficiencyHeatLossandPeakWaterFlowRate_Test.rb @@ -0,0 +1,58 @@ +# frozen_string_literal: true + +require 'openstudio' +require 'openstudio/ruleset/ShowRunnerOutput' + +require "#{File.dirname(__FILE__)}/../measure.rb" + +require 'test/unit' + +class SetWaterHeaterEfficiencyHeatLossandPeakWaterFlowRate_Test < Test::Unit::TestCase + # def setup + # end + + # def teardown + # end + + def test_SetWaterHeaterEfficiencyHeatLossandPeakWaterFlowRate + # create an instance of the measure + measure = SetWaterHeaterEfficiencyHeatLossandPeakWaterFlowRate.new + + # create an instance of a runner + runner = OpenStudio::Ruleset::OSRunner.new + + # make an empty model + model = OpenStudio::Model::Model.new + + # get arguments and test that they are what we are expecting + arguments = measure.arguments(model) + assert_equal(2, arguments.size) + assert_equal('user_name', arguments[0].name) + assert_equal('add_space', arguments[1].name) + assert(!arguments[0].hasDefaultValue) + + # set argument values to bad values and run the measure + argument_map = OpenStudio::Ruleset::OSArgumentMap.new + user_name = arguments[0].clone + assert(user_name.setValue('')) + argument_map['user_name'] = user_name + measure.run(model, runner, argument_map) + result = runner.result + assert(result.value.valueName == 'Fail') + + # set argument values to good values and run the measure on model with spaces + argument_map = OpenStudio::Ruleset::OSArgumentMap.new + user_name = arguments[0].clone + assert(user_name.setValue('david')) + argument_map['user_name'] = user_name + add_space = arguments[1].clone + assert(add_space.setValue(true)) + argument_map['add_space'] = add_space + measure.run(model, runner, argument_map) + result = runner.result + show_output(result) + assert(result.value.valueName == 'Success') + assert(result.warnings.size == 1) + assert(result.info.size == 2) + end +end diff --git a/lib/measures/tenant_star_internal_loads/measure.rb b/lib/measures/tenant_star_internal_loads/measure.rb new file mode 100644 index 0000000..08540eb --- /dev/null +++ b/lib/measures/tenant_star_internal_loads/measure.rb @@ -0,0 +1,134 @@ +# frozen_string_literal: true + +# see the URL below for information on how to write OpenStudio measures +# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ + +# start the measure +class TenantStarInternalLoads < OpenStudio::Ruleset::ModelUserScript + require 'openstudio-standards' + + # require all .rb files in resources folder + Dir[File.dirname(__FILE__) + '/resources/*.rb'].each { |file| require file } + + # resource file modules + include OsLib_HelperMethods + + # human readable name + def name + return 'Tenant Star Internal Loads' + end + + # human readable description + def description + return 'Overrides existing model values for lightings, equipment, people, and infiltration.' + end + + # human readable description of modeling approach + def modeler_description + return 'Lighting should be stacked value unless we add uncertainty. Equipment and people will vary based on information provided by tenant, and infiltration will be used for uncertainty. Schedules will be addressed in a separate measure that creates parametric schedules based on hours of operation.' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # argument for lpd + # note: the new consumption method is ontly setup to work on lights that are wattsperSpaceFloorArea and use ScheduleRulesets. It will fail with ruby error if that isn't the case, but for TenantStart this will be fine. + # lpd = OpenStudio::Ruleset::OSArgument.makeDoubleArgument("lpd", true) + # lpd.setDisplayName("Target Annual lighting power consumption") + # lpd.setDefaultValue(5.0) + # lpd.setUnits("kBtu/ft^2") + # lpd.setDescription("This will be used to calculate an LPD by dividing annual consumption by annual_equivalent_full_load_hrs and floor area. Lighting schedules should not be changed after this measure has been run or consumpiton will not be as expected.") + # args << lpd + + # argument for epd + epd = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('epd', true) + epd.setDisplayName('Electric Equipment Power Density') + epd.setDefaultValue(0.55) # 0.55 value came from 50% AEDG Table 4.7 + epd.setUnits('W/ft^2') + epd.setDescription('Electric Power Density including servers.') + args << epd + + # argument for people_per_floor_area + # people_per_floor_area = OpenStudio::Ruleset::OSArgument.makeDoubleArgument("people_per_floor_area", true) + # people_per_floor_area.setDisplayName("People per floor area") + # people_per_floor_area.setDefaultValue(0.005) # default value based on medium office prototype + # people_per_floor_area.setUnits("People/ft^2") + # args << people_per_floor_area + + return args + end + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # assign the user inputs to variables + args = OsLib_HelperMethods.createRunVariables(runner, model, user_arguments, arguments(model)) + if !args then return false end + + # non_neg_args = ["lpd","epd","people_per_floor_area"] + non_neg_args = ['epd'] + non_neg = OsLib_HelperMethods.checkDoubleAndIntegerArguments(runner, user_arguments, 'min' => 0.0, 'max' => nil, 'min_eq_bool' => true, 'max_eq_bool' => false, 'arg_array' => non_neg_args) + if !non_neg then return false end + + # report initial condition of model + # runner.registerInitialCondition("The building started with an installed LPD of #{ OpenStudio::convert(model.getBuilding.lightingPowerPerFloorArea,"W/m^2","W/ft^2").get} W/ft^2.") + + # calculate initial lighting consumtpion (assuming no daylight controls) to determine LPD adjustmnet multiplier) + # initial_consumption = 0.0 + # model.getSpaceTypes.each do |space_type| + # next if space_type.spaces.size == 0 + # space_type.lights.each do |light| + # floor_area = space_type.floorArea + # lpd = light.lightsDefinition.wattsperSpaceFloorArea.get + # schedule = light.schedule.get + # ann_equiv_hours = schedule.to_ScheduleRuleset.get.annual_equivalent_full_load_hrs + # consumption = floor_area * lpd * ann_equiv_hours + # runner.registerInfo("#{light.name} has #{ann_equiv_hours} annual equiv. hours with total consumption of #{consumption}.") + # initial_consumption += consumption + # end + # end + + # calculate LPD multiplier + # lpd_multiplier = OpenStudio::convert(model.getBuilding.floorArea,"m^2","ft^2").get * args['lpd']/OpenStudio::convert(initial_consumption,"Wh","kBtu").get + + # array of altered lighting defitinos (tracking so isn't altered twice) + # altered_light_defs = [] + + # loop through spae types altering loads + # model.getSpaceTypes.each do |space_type| + # next if space_type.spaces.size == 0 + + # update lights + # space_type.lights.each do |light| + # light_def = light.lightsDefinition + # if not altered_light_defs.include?(light_def) + # light_def.setWattsperSpaceFloorArea(light_def.wattsperSpaceFloorArea.get * lpd_multiplier) + # altered_light_defs << light_def + # end + # end + + # replace electric equipment + model.getSpaceTypes.each do |space_type| + epd_si = OpenStudio.convert(args['epd'], 'W/ft^2', 'W/m^2').get + space_type.setElectricEquipmentPowerPerFloorArea(epd_si) + runner.registerInfo("Changing EPD for plug loads for #{space_type.name} to #{args['epd']} (W/ft^2)") + end + + # replace people + # people_per_floor_area_si = OpenStudio::convert(args['people_per_floor_area'],"1/ft^2","1/m^2").get + # space_type.setPeoplePerFloorArea(people_per_floor_area_si) + # runner.registerInfo("Changing People per floor area for #{space_type.name} to #{args['people_per_floor_area']} (People/ft^2)") + + # end + + # report final condition of model + # runner.registerFinalCondition("The building finished with an installed LPD of #{ OpenStudio::convert(model.getBuilding.lightingPowerPerFloorArea,"W/m^2","W/ft^2").get} W/ft^2.") + + return true + end +end + +# register the measure to be used by the application +TenantStarInternalLoads.new.registerWithApplication diff --git a/lib/measures/tenant_star_internal_loads/measure.xml b/lib/measures/tenant_star_internal_loads/measure.xml new file mode 100644 index 0000000..6ae73fd --- /dev/null +++ b/lib/measures/tenant_star_internal_loads/measure.xml @@ -0,0 +1,67 @@ + + 3.0 + tenant_star_internal_loads + 8c10b18d-c66d-43dc-9ef5-b82dfed0edde + 6c19271d-8f07-4983-a219-810c8fa75da5 + 20180717T215712Z + 2C38F48B + TenantStarInternalLoads + Tenant Star Internal Loads + Overrides existing model values for lightings, equipment, people, and infiltration. + Lighting should be stacked value unless we add uncertainty. Equipment and people will vary based on information provided by tenant, and infiltration will be used for uncertainty. Schedules will be addressed in a separate measure that creates parametric schedules based on hours of operation. + + + epd + Electric Equipment Power Density + Electric Power Density including servers. + Double + W/ft^2 + true + false + 0.55 + + + + + + Whole Building.Space Types + + + + Measure Type + ModelMeasure + string + + + + + example_model.osm + osm + test + 53D14E69 + + + tenant_star_internal_loads_test.rb + rb + test + 877E59E4 + + + os_lib_helper_methods.rb + rb + resource + 9CFC43FB + + + + OpenStudio + 2.1.0 + 2.1.0 + + measure.rb + rb + script + F92433BA + + + diff --git a/lib/measures/tenant_star_internal_loads/resources/os_lib_helper_methods.rb b/lib/measures/tenant_star_internal_loads/resources/os_lib_helper_methods.rb new file mode 100644 index 0000000..a9b8d39 --- /dev/null +++ b/lib/measures/tenant_star_internal_loads/resources/os_lib_helper_methods.rb @@ -0,0 +1,401 @@ +# frozen_string_literal: true + +# ******************************************************************************* +# OpenStudio(R), Copyright (c) 2008-2018, Alliance for Sustainable Energy, LLC. +# All rights reserved. +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# (1) Redistributions of source code must retain the above copyright notice, +# this list of conditions and the following disclaimer. +# +# (2) Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# +# (3) Neither the name of the copyright holder nor the names of any contributors +# may be used to endorse or promote products derived from this software without +# specific prior written permission from the respective party. +# +# (4) Other than as required in clauses (1) and (2), distributions in any form +# of modifications or other derivative works may not use the "OpenStudio" +# trademark, "OS", "os", or any other confusingly similar designation without +# specific prior written permission from Alliance for Sustainable Energy, LLC. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE +# UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF +# THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# ******************************************************************************* + +module OsLib_HelperMethods + # populate choice argument from model objects + def self.populateChoiceArgFromModelObjects(model, modelObject_args_hash, includeBuilding = nil) + # populate choice argument for constructions that are applied to surfaces in the model + modelObject_handles = OpenStudio::StringVector.new + modelObject_display_names = OpenStudio::StringVector.new + + # looping through sorted hash of constructions + modelObject_args_hash.sort.map do |key, value| + modelObject_handles << value.handle.to_s + modelObject_display_names << key + end + + unless includeBuilding.nil? + # add building to string vector with space type + building = model.getBuilding + modelObject_handles << building.handle.to_s + modelObject_display_names << includeBuilding + end + + result = { 'modelObject_handles' => modelObject_handles, 'modelObject_display_names' => modelObject_display_names } + return result + end + + # create variables in run from user arguments + def self.createRunVariables(runner, model, user_arguments, arguments) + result = {} + + error = false + # use the built-in error checking + unless runner.validateUserArguments(arguments, user_arguments) + error = true + runner.registerError('Invalid argument values.') + end + + user_arguments.each do |argument| + # get argument info + arg = user_arguments[argument] + arg_type = arg.print.lines($/)[1] + + # create argument variable + if arg_type.include? 'Double, Required' + eval("result[\"#{arg.name}\"] = runner.getDoubleArgumentValue(\"#{arg.name}\", user_arguments)") + elsif arg_type.include? 'Integer, Required' + eval("result[\"#{arg.name}\"] = runner.getIntegerArgumentValue(\"#{arg.name}\", user_arguments)") + elsif arg_type.include? 'String, Required' + eval("result[\"#{arg.name}\"] = runner.getStringArgumentValue(\"#{arg.name}\", user_arguments)") + elsif arg_type.include? 'Boolean, Required' + eval("result[\"#{arg.name}\"] = runner.getBoolArgumentValue(\"#{arg.name}\", user_arguments)") + elsif arg_type.include? 'Choice, Required' + eval("result[\"#{arg.name}\"] = runner.getStringArgumentValue(\"#{arg.name}\", user_arguments)") + else + puts 'not setup to handle all argument types yet, or any optional arguments' + end + end + + if error + return false + else + return result + end + end + + # check choice argument made from model objects + def self.checkChoiceArgFromModelObjects(object, variableName, to_ObjectType, runner, user_arguments) + apply_to_building = false + modelObject = nil + if object.empty? + handle = runner.getStringArgumentValue(variableName, user_arguments) + if handle.empty? + runner.registerError("No #{variableName} was chosen.") # this logic makes this not work on an optional model object argument + else + runner.registerError("The selected #{variableName} with handle '#{handle}' was not found in the model. It may have been removed by another measure.") + end + return false + else + if !eval("object.get.#{to_ObjectType}").empty? + modelObject = eval("object.get.#{to_ObjectType}").get + elsif !object.get.to_Building.empty? + apply_to_building = true + else + runner.registerError("Script Error - argument not showing up as #{variableName}.") + return false + end + end + + result = { 'modelObject' => modelObject, 'apply_to_building' => apply_to_building } + end + + # check choice argument made from model objects + def self.checkOptionalChoiceArgFromModelObjects(object, variableName, to_ObjectType, runner, user_arguments) + apply_to_building = false + modelObject = nil + if object.empty? + handle = runner.getOptionalStringArgumentValue(variableName, user_arguments) + if handle.empty? + # do nothing, this is a valid option + puts 'hello' + modelObject = nil + apply_to_building = false + else + runner.registerError("The selected #{variableName} with handle '#{handle}' was not found in the model. It may have been removed by another measure.") + return false + end + else + if !eval("object.get.#{to_ObjectType}").empty? + modelObject = eval("object.get.#{to_ObjectType}").get + elsif !object.get.to_Building.empty? + apply_to_building = true + else + runner.registerError("Script Error - argument not showing up as #{variableName}.") + return false + end + end + + result = { 'modelObject' => modelObject, 'apply_to_building' => apply_to_building } + end + + # check value of double arguments + def self.checkDoubleAndIntegerArguments(runner, user_arguments, arg_check_hash) + error = false + + # get hash values + min = arg_check_hash['min'] + max = arg_check_hash['max'] + min_eq_bool = arg_check_hash['min_eq_bool'] + max_eq_bool = arg_check_hash['max_eq_bool'] + + arg_check_hash['arg_array'].each do |argument| + argument = user_arguments[argument] + + # get arg values + arg_value = nil + if argument.hasValue + arg_value = argument.valueDisplayName.to_f # instead of valueAsDouble so it allows integer arguments as well + elsif argument.hasDefaultValue + arg_value = argument.defaultValueDisplayName.to_f + end + arg_display = argument.displayName + + unless min.nil? + if min_eq_bool + if arg_value < min + runner.registerError("Please enter value greater than or equal to #{min} for #{arg_display}.") # add in argument display name + error = true + end + else + if arg_value <= min + runner.registerError("Please enter value greater than #{min} for #{arg_display}.") # add in argument display name + error = true + end + end + end + unless max.nil? + if max_eq_bool + if arg_value > max + runner.registerError("Please enter value less than or equal to #{max} for #{arg_display}.") # add in argument display name + error = true + end + else + if arg_value >= max + runner.registerError("Please enter value less than #{max} for #{arg_display}.") # add in argument display name + error = true + end + end + end + end + + # check for any errors + if error + return false + else + return true + end + end + + # open channel to log info/warning/error messages + def self.setup_log_msgs(runner, debug = false) + # Open a channel to log info/warning/error messages + @msg_log = OpenStudio::StringStreamLogSink.new + if debug + @msg_log.setLogLevel(OpenStudio::Debug) + else + @msg_log.setLogLevel(OpenStudio::Info) + end + @start_time = Time.new + @runner = runner + end + + # Get all the log messages and put into output + # for users to see. + def self.log_msgs + @msg_log.logMessages.each do |msg| + # DLM: you can filter on log channel here for now + if /openstudio.*/.match?(msg.logChannel) # /openstudio\.model\..*/ + # Skip certain messages that are irrelevant/misleading + next if msg.logMessage.include?('Skipping layer') || # Annoying/bogus "Skipping layer" warnings + msg.logChannel.include?('runmanager') || # RunManager messages + msg.logChannel.include?('setFileExtension') || # .ddy extension unexpected + msg.logChannel.include?('Translator') || # Forward translator and geometry translator + msg.logMessage.include?('UseWeatherFile') # 'UseWeatherFile' is not yet a supported option for YearDescription + + # Report the message in the correct way + if msg.logLevel == OpenStudio::Info + @runner.registerInfo(msg.logMessage) + elsif msg.logLevel == OpenStudio::Warn + @runner.registerWarning("[#{msg.logChannel}] #{msg.logMessage}") + elsif msg.logLevel == OpenStudio::Error + @runner.registerError("[#{msg.logChannel}] #{msg.logMessage}") + elsif msg.logLevel == OpenStudio::Debug && @debug + @runner.registerInfo("DEBUG - #{msg.logMessage}") + end + end + end + @runner.registerInfo("Total Time = #{(Time.new - @start_time).round}sec.") + end + + def self.check_upstream_measure_for_arg(runner, arg_name) + # 2.x methods (currently setup for measure display name but snake_case arg names) + arg_name_value = {} + runner.workflow.workflowSteps.each do |step| + if step.to_MeasureStep.is_initialized + measure_step = step.to_MeasureStep.get + + measure_name = measure_step.measureDirName + if measure_step.name.is_initialized + measure_name = measure_step.name.get # this is instance name in PAT + end + if measure_step.result.is_initialized + result = measure_step.result.get + result.stepValues.each do |arg| + name = arg.name + value = arg.valueAsVariant.to_s + if name == arg_name + arg_name_value[:value] = value + arg_name_value[:measure_name] = measure_name + return arg_name_value # stop after find first one + end + end + else + # puts "No result for #{measure_name}" + end + else + # puts "This step is not a measure" + end + end + + return arg_name_value + end + + # populate choice argument from model objects. areaType should be string like "floorArea" or "exteriorArea" + # note: it seems like spaceType.floorArea does account for multiplier, so I don't have to call this method unless I have a custom collection of spaces. + def self.getAreaOfSpacesInArray(model, spaceArray, areaType = 'floorArea') + # find selected floor spaces, make array and get floor area. + totalArea = 0 + spaceAreaHash = {} + spaceArray.each do |space| + spaceArea = eval("space.#{areaType}*space.multiplier") + spaceAreaHash[space] = spaceArea + totalArea += spaceArea + end + + result = { 'totalArea' => totalArea, 'spaceAreaHash' => spaceAreaHash } + return result + end + + # runs conversion and neat string, and returns value with units in string, optionally before or after the value + def self.neatConvertWithUnitDisplay(double, fromString, toString, digits, unitBefore = false, unitAfter = true, space = true, parentheses = true) + # convert units + doubleConverted = OpenStudio.convert(double, fromString, toString) + if !doubleConverted.nil? + doubleConverted = doubleConverted.get + else + puts "Couldn't convert values, check string choices passed in. From: #{fromString}, To: #{toString}" + end + + # get neat version of converted + neatConverted = OpenStudio.toNeatString(doubleConverted, digits, true) + + # add prefix + if unitBefore + if space == true && parentheses == true + prefix = "(#{toString}) " + elsif space == true && parentheses == false + prefix = "(#{toString})" + elsif space == false && parentheses == true + prefix = "#{toString} " + else + prefix = toString.to_s + end + else + prefix = '' + end + + # add suffix + if unitAfter + if space == true && parentheses == true + suffix = " (#{toString})" + elsif space == true && parentheses == false + suffix = "(#{toString})" + elsif space == false && parentheses == true + suffix = " #{toString}" + else + suffix = toString.to_s + end + else + suffix = '' + end + + finalString = "#{prefix}#{neatConverted}#{suffix}" + + return finalString + end + + # helper that loops through lifecycle costs getting total costs under "Construction" and add to counter if occurs during year 0 + def self.getTotalCostForObjects(objectArray, category = 'Construction', onlyYearFromStartZero = true) + counter = 0 + objectArray.each do |object| + object_LCCs = object.lifeCycleCosts + object_LCCs.each do |object_LCC| + if object_LCC.category == category + if onlyYearFromStartZero == false || object_LCC.yearsFromStart == 0 + counter += object_LCC.totalCost + end + end + end + end + + return counter + end + + # helper that loops through lifecycle costs getting total costs under "Construction" and add to counter if occurs during year 0 + def self.getSpaceTypeStandardsInformation(spaceTypeArray) + # hash of space types + spaceTypeStandardsInfoHash = {} + + spaceTypeArray.each do |spaceType| + # get standards building + if !spaceType.standardsBuildingType.empty? + standardsBuilding = spaceType.standardsBuildingType.get + else + standardsBuilding = nil + end + + # get standards space type + if !spaceType.standardsSpaceType.empty? + standardsSpaceType = spaceType.standardsSpaceType.get + else + standardsSpaceType = nil + end + + # populate hash + spaceTypeStandardsInfoHash[spaceType] = [standardsBuilding, standardsSpaceType] + end + + return spaceTypeStandardsInfoHash + end + + # OpenStudio has built in toNeatString method + # OpenStudio::toNeatString(double,2,true)# double,decimals, show commas + + # OpenStudio has built in helper for unit conversion. That can be done using OpenStudio::convert() as shown below. + # OpenStudio::convert(double,"from unit string","to unit string").get +end diff --git a/lib/measures/tenant_star_internal_loads/tests/example_model.osm b/lib/measures/tenant_star_internal_loads/tests/example_model.osm new file mode 100644 index 0000000..0bd6b18 --- /dev/null +++ b/lib/measures/tenant_star_internal_loads/tests/example_model.osm @@ -0,0 +1,8077 @@ + +OS:Version, + {f19c731b-418b-4769-bbe8-2634b34ddb76}, !- Handle + 1.13.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: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: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: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: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:ScheduleTypeLimits, + {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Handle + Fraction, ! Name + 0, ! Lower Limit Value + 1, ! Upper Limit Value + CONTINUOUS; ! Numeric Type + +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: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: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: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: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: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: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: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: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: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, + {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 + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.100000001490116, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.200000002980232, !- Value Until Time 3 + 20, !- Hour 4 + 0, !- Minute 4 + 0.400000005960464, !- Value Until Time 4 + 22, !- Hour 5 + 0, !- Minute 5 + 0.100000001490116, !- Value Until Time 5 + 24, !- 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 + +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 + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.100000001490116, !- Value Until Time 2 + 14, !- Hour 3 + 0, !- Minute 3 + 0.25, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.100000001490116, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0; !- Value Until Time 5 + +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 + +OS:ScheduleTypeLimits, + {65bf6a03-1758-4903-8383-db583a09d8f8}, !- 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 + 24, !- Hour 1 + 0, !- Minute 1 + 132; !- Value Until Time 1 + +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 + 24, !- Hour 1 + 0, !- Minute 1 + 132; !- 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 + 24, !- Hour 1 + 0, !- Minute 1 + 132; !- 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: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 + +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 + 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, + {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 + +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 + +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 + +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 + 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, + {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 + +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 + +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, + {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 + +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 + 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, + {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 + +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 + 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, + {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 + +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 + +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 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.100000001490116, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.200000002980232, !- Value Until Time 3 + 12, !- Hour 4 + 0, !- Minute 4 + 0.850000023841858, !- Value Until Time 4 + 13, !- Hour 5 + 0, !- Minute 5 + 0.5, !- Value Until Time 5 + 17, !- Hour 6 + 0, !- Minute 6 + 0.850000023841858, !- Value Until Time 6 + 18, !- Hour 7 + 0, !- Minute 7 + 0.699999988079071, !- Value Until Time 7 + 20, !- Hour 8 + 0, !- Minute 8 + 0.400000005960464, !- Value Until Time 8 + 22, !- Hour 9 + 0, !- Minute 9 + 0.100000001490116, !- Value Until Time 9 + 24, !- 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 + +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 + +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 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.100000001490116, !- Value Until Time 2 + 14, !- Hour 3 + 0, !- Minute 3 + 0.400000005960464, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.100000001490116, !- Value Until Time 4 + 24, !- 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 + +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: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: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:StandardsInformation:Construction, + {56d08b42-76df-4617-82fc-10413928e30e}, !- Handle + {7a0f32f0-ed41-4458-b35f-782d54c4cf3c}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +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: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: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: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: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:StandardsInformation:Construction, + {467ca491-6c1d-4847-a1dd-a5fe4331f049}, !- Handle + {dd95d8d1-cb40-4462-b3ef-6d971a9babc7}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +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: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: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: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: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:StandardsInformation:Construction, + {61f36c91-69cb-4354-9f7e-cfa1cb96b197}, !- Handle + {253b4c5e-eec6-44ee-a66e-86e873e08a61}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +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: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: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 + , !- Space Shading Construction Name + , !- Building Shading Construction Name + ; !- Site Shading 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 + +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 + +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 + +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 + +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:StandardsInformation:Construction, + {d55825e5-87d9-473f-9fe3-b54e798b73b2}, !- Handle + {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +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: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: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: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: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 + +OS:StandardsInformation:Construction, + {99c16b51-1376-4d0d-ae82-9abe62b5b9bc}, !- Handle + {69871c9e-7438-4e91-92bd-66fabb7f9850}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {0681dbd1-2005-474d-9af1-f3e3c9bdfdd6}, !- Handle + Wall Insulation [40], !- 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 + +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: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: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 + +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 + +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: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: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} + 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: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 + +OS:WindowMaterial:Glazing, + {49faa92b-2c62-4fe3-87e7-99e278102799}, !- Handle + Theoretical Glass [216], !- 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, !- 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 + +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: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 + +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, + {6f104856-6bc7-479e-87b3-44c13f6b441e}, !- Handle + Wall Insulation [44], !- 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 + +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 + +OS:StandardsInformation:Construction, + {252369f7-3f86-46ff-a0c8-1399371eb759}, !- Handle + {c6bbd742-fc9f-439b-94f4-e8038f26f5bd}, !- Construction Name + ExteriorRoof, !- Intended Surface Type + IEAD; !- Standards Construction Type + +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 + +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: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: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: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:StandardsInformation:Construction, + {20aa7704-c7fd-4a24-aa3b-7f69c9544b7c}, !- Handle + {b7889a36-262c-4dbe-b8ee-96206687aa1b}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +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: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: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: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 + +OS:BuildingStory, + {50868583-cd6e-4b33-9980-93aced1f0725}, !- Handle + Building Story 1, !- Name + 0, !- Nominal Z Coordinate {m} + 3.048, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {3382e11a-163a-4157-8831-d7c6831e1559}; !- Group Rendering Name + +OS:Space, + {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Handle + Space 101, !- 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 + +OS:Surface, + {34613696-6b52-44f1-a5ff-a36900647fd1}, !- Handle + Surface 1, !- Name + Floor, !- Surface Type + , !- Construction Name + {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- 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} + +OS:Surface, + {e6da7134-b845-4c2b-92d8-471d959b0232}, !- 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 + , !- 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} + +OS:Surface, + {8e228e17-f447-4351-8255-68a903116bf5}, !- Handle + Surface 3, !- Name + Wall, !- Surface Type + , !- Construction Name + {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name + Surface, !- Outside Boundary Condition + {0931ca6c-82dd-4ac5-8014-24c0b87d9ba8}, !- 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} + +OS:Surface, + {5cfd7343-beef-4dd8-96ff-05ad91c84aad}, !- 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 + , !- 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} + +OS:Surface, + {bf033db5-8c2d-4f1b-b467-6f8ae942fd52}, !- Handle + Surface 5, !- 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 + , !- 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} + +OS:Surface, + {2ee589ef-ee4e-4ccf-82dc-5bd481b7f155}, !- Handle + Surface 6, !- Name + RoofCeiling, !- 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 + , !- 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} + +OS:Space, + {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Handle + Space 102, !- 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 + +OS:Surface, + {19d18d73-c9ca-4549-a15e-3a457813fcf2}, !- Handle + Surface 7, !- Name + Floor, !- Surface Type + , !- Construction Name + {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name + Ground, !- Outside Boundary Condition + , !- 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} + +OS:Surface, + {b3fe4f2a-ff3a-493e-9743-c7be2c1ce9d2}, !- Handle + Surface 8, !- Name + Wall, !- Surface Type + , !- Construction Name + {8e444b86-da4a-4808-a97b-44d486743eb3}, !- 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} + +OS:Surface, + {0931ca6c-82dd-4ac5-8014-24c0b87d9ba8}, !- Handle + Surface 9, !- Name + Wall, !- Surface Type + , !- Construction Name + {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name + Surface, !- Outside Boundary Condition + {8e228e17-f447-4351-8255-68a903116bf5}, !- 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} + +OS:Surface, + {53f098ba-949b-4003-a566-b63754a87202}, !- 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 + , !- 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} + +OS:Surface, + {80879f81-820f-4603-b611-b68e1595cb6e}, !- Handle + Surface 11, !- Name + Wall, !- Surface Type + , !- Construction Name + {8e444b86-da4a-4808-a97b-44d486743eb3}, !- 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} + +OS:Surface, + {7fab646c-6a8f-452d-8ba0-c4c385d0eb50}, !- Handle + Surface 12, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {8e444b86-da4a-4808-a97b-44d486743eb3}, !- 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:Space, + {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Handle + Space 103, !- 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 + +OS:Surface, + {74a5de71-ac42-4838-888e-c4db7769715a}, !- Handle + Surface 13, !- Name + Floor, !- Surface Type + , !- Construction Name + {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- 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} + +OS:Surface, + {04c217f9-794f-482e-9566-bc9939ac2b67}, !- Handle + Surface 14, !- 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 + , !- 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} + +OS:Surface, + {35cbb3e8-0b70-4fd5-9713-bb391d09a5fc}, !- 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 + , !- 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} + +OS:Surface, + {002dd6d5-ccf2-4528-bee3-372935270e38}, !- Handle + Surface 16, !- Name + Wall, !- Surface Type + , !- Construction Name + {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name + Surface, !- Outside Boundary Condition + {e6da7134-b845-4c2b-92d8-471d959b0232}, !- 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} + +OS:Surface, + {29c6e6ba-2a04-4ad6-9f09-69b0692bd305}, !- 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 + , !- 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} + +OS:Surface, + {f7e843c5-68c1-43f0-9204-c49b0f3332a6}, !- Handle + Surface 18, !- Name + RoofCeiling, !- 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 + , !- 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} + +OS:Space, + {3810e56a-95f5-4687-b896-06caf8120348}, !- Handle + Space 104, !- 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 + +OS:Surface, + {81f77032-b16a-42d2-9517-02ae4c166df8}, !- Handle + Surface 19, !- Name + Floor, !- Surface Type + , !- Construction Name + {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name + Ground, !- Outside Boundary Condition + , !- 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} + +OS:Surface, + {a0c1b5bc-da84-48af-8e48-32fcb79ef150}, !- Handle + Surface 20, !- Name + Wall, !- Surface Type + , !- Construction Name + {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name + Surface, !- Outside Boundary Condition + {53f098ba-949b-4003-a566-b63754a87202}, !- 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} + +OS:Surface, + {2380e7e5-5843-486a-880b-888b9dee3a31}, !- 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 + , !- 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} + +OS:Surface, + {3ce940a4-dffc-4da5-8e17-a47c6fde3c37}, !- Handle + Surface 22, !- 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 + , !- 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} + +OS:Surface, + {5adfa187-cd8e-4214-9ea8-4a4f634cf64c}, !- 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 + , !- 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} + +OS:Surface, + {8d537633-3f6b-476a-b746-cea3a8736eed}, !- Handle + Surface 24, !- Name + RoofCeiling, !- 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 + , !- 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 + +OS:SubSurface, + {c338f8b3-5a59-499c-98ca-df5a820387cd}, !- Handle + Sub Surface 1, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {04c217f9-794f-482e-9566-bc9939ac2b67}, !- 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} + +OS:SubSurface, + {dbcac169-5385-435a-ac98-e7891b7f2a0a}, !- Handle + Sub Surface 2, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {29c6e6ba-2a04-4ad6-9f09-69b0692bd305}, !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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, + {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: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 + , !- 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, + {f4f4b729-630c-44aa-b175-61ca8c5dbc18}, !- Handle + Sub Surface 7, !- Name + FixedWindow, !- Sub Surface Type + , !- 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 + , !- 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 + , !- 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 + , !- 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 + +OS:HeatBalanceAlgorithm, + {f9a03de5-79c9-409d-a764-bd2a8d39b93c}, !- Handle + ConductionTransferFunction, !- Algorithm + 200; !- Surface Temperature Upper Limit {C} + +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 + diff --git a/lib/measures/tenant_star_internal_loads/tests/tenant_star_internal_loads_test.rb b/lib/measures/tenant_star_internal_loads/tests/tenant_star_internal_loads_test.rb new file mode 100644 index 0000000..e6852a4 --- /dev/null +++ b/lib/measures/tenant_star_internal_loads/tests/tenant_star_internal_loads_test.rb @@ -0,0 +1,59 @@ +# frozen_string_literal: true + +require 'openstudio' +require 'openstudio/ruleset/ShowRunnerOutput' +require 'minitest/autorun' +require_relative '../measure.rb' +require 'fileutils' + +class TenantStarInternalLoads_Test < MiniTest::Unit::TestCase + def test_good_argument_values + # create an instance of the measure + measure = TenantStarInternalLoads.new + + # create an instance of a runner + runner = OpenStudio::Ruleset::OSRunner.new + + # load the test model + translator = OpenStudio::OSVersion::VersionTranslator.new + path = OpenStudio::Path.new(File.dirname(__FILE__) + '/example_model.osm') + model = translator.loadModel(path) + assert(!model.empty?) + model = model.get + + # get arguments + arguments = measure.arguments(model) + argument_map = OpenStudio::Ruleset.convertOSArgumentVectorToMap(arguments) + + # create hash of argument values. + # If the argument has a default that you want to use, you don't need it in the hash + args_hash = {} + # args_hash["space_name"] = "New Space" + # using defaults values from measure.rb for other arguments + + # populate argument with specified hash value if specified + arguments.each do |arg| + temp_arg_var = arg.clone + if args_hash.key?(arg.name) + assert(temp_arg_var.setValue(args_hash[arg.name])) + end + argument_map[arg.name] = temp_arg_var + end + + # run the measure + measure.run(model, runner, argument_map) + result = runner.result + + # show the output + show_output(result) + + # assert that it ran correctly + assert_equal('Success', result.value.valueName) + # assert(result.info.size == 1) + # assert(result.warnings.size == 0) + + # save the model to test output directory + output_file_path = OpenStudio::Path.new(File.dirname(__FILE__) + '/output/test_output.osm') + model.save(output_file_path, true) + end +end diff --git a/lib/measures/vr_fwith_doas/measure.rb b/lib/measures/vr_fwith_doas/measure.rb new file mode 100644 index 0000000..85dc05e --- /dev/null +++ b/lib/measures/vr_fwith_doas/measure.rb @@ -0,0 +1,468 @@ +# frozen_string_literal: true + +# see the URL below for information on how to write OpenStudio measures +# http://openstudio.nrel.gov/openstudio-measure-writing-guide + +# see the URL below for information on using life cycle cost objects in OpenStudio +# http://openstudio.nrel.gov/openstudio-life-cycle-examples + +# see the URL below for access to C++ documentation on model objects (click on "model" in the main window to view model objects) +# http://openstudio.nrel.gov/sites/openstudio.nrel.gov/files/nv_data/cpp_documentation_it/model/html/namespaces.html + +# load OpenStudio measure libraries +# require "#{File.dirname(__FILE__)}/resources/OsLib_AedgMeasures" +require "#{File.dirname(__FILE__)}/resources/OsLib_HelperMethods" +require "#{File.dirname(__FILE__)}/resources/OsLib_HVAC" +require "#{File.dirname(__FILE__)}/resources/OsLib_Schedules" + +# start the measure +class VRFwithDOAS < OpenStudio::Ruleset::ModelUserScript + # define the name that a user will see, this method may be deprecated as + # the display name in PAT comes from the name field in measure.xml + def name + return 'VRFwithDOAS' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # create an argument for a space type to be used in the model, to see if one should be mapped as ceiling return air plenum + spaceTypes = model.getSpaceTypes + usedSpaceTypes_handle = OpenStudio::StringVector.new + usedSpaceTypes_displayName = OpenStudio::StringVector.new + spaceTypes.each do |spaceType| # TODO: - I need to update this to use helper so GUI sorts by display name + if !spaceType.spaces.empty? # only show space types used in the building + usedSpaceTypes_handle << spaceType.handle.to_s + usedSpaceTypes_displayName << spaceType.name.to_s + end + end + + # make an argument for space type + ceilingReturnPlenumSpaceType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('ceilingReturnPlenumSpaceType', usedSpaceTypes_handle, usedSpaceTypes_displayName, false) + ceilingReturnPlenumSpaceType.setDisplayName('This space type should be part of a ceiling return air plenum.') + # ceilingReturnPlenumSpaceType.setDefaultValue("We don't want a default, this is an optional argument") + args << ceilingReturnPlenumSpaceType + + # make a list of space types that will be changed + spaceTypes = model.getSpaceTypes + spaceTypes.each do |spaceType| + if !spaceType.spaces.empty? + space_type_to_edit = OpenStudio::Ruleset::OSArgument.makeBoolArgument(spaceType.name.get.to_s, true) + # make a bool argument for each space type + space_type_to_edit.setDisplayName("Add #{spaceType.name.get} space type to VRF system?") + space_type_to_edit.setDefaultValue(false) + args << space_type_to_edit + end + end + + # VRF Condenser Type + condenserChs = OpenStudio::StringVector.new + # condenserChs << "WaterCooled" + # condenserChs << "EvaporativelyCooled" + condenserChs << 'AirCooled' + vrfCondenserType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('vrfCondenserType', condenserChs, true) + vrfCondenserType.setDisplayName('VRF Condenser Type') + vrfCondenserType.setDefaultValue('AirCooled') + args << vrfCondenserType + + # Cooling COP of VRF + vrfCoolCOP = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('vrfCoolCOP', false) + vrfCoolCOP.setDisplayName('VRF Rated Cooling COP (Not Including Supply Fan)') + vrfCoolCOP.setDefaultValue(4.0) + args << vrfCoolCOP + + # Heating COP of VRF + vrfHeatCOP = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('vrfHeatCOP', false) + vrfHeatCOP.setDisplayName('VRF Rated Heating COP (Not Including Supply Fan)') + vrfHeatCOP.setDefaultValue(4.0) + args << vrfHeatCOP + + # Minimum Outdoor Temperature in Heating Mode + vrfMinOATHPHeat = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('vrfMinOATHPHeat', false) + vrfMinOATHPHeat.setDisplayName('Minimum Outdoor Temperature in Heat Pump Heating Mode (F)') + vrfMinOATHPHeat.setDefaultValue(-4.0) + args << vrfMinOATHPHeat + + # Defrost Strategy + defrostChs = OpenStudio::StringVector.new + # defrostChs << "ReverseCycle" + defrostChs << 'Resistive' + vrfDefrost = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('vrfDefrost', defrostChs, true) + vrfDefrost.setDisplayName('Defrost Strategy') + vrfDefrost.setDefaultValue('Resistive') + args << vrfDefrost + + # Heat Pump Waste Heat Recovery + chs = OpenStudio::StringVector.new + chs << 'Yes' + chs << 'No' + vrfHPHeatRecovery = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('vrfHPHeatRecovery', chs, true) + vrfHPHeatRecovery.setDisplayName('Heat Pump Waste Heat Recovery') + vrfHPHeatRecovery.setDefaultValue('Yes') + args << vrfHPHeatRecovery + + # Equivalent Piping Length used for Piping Correction Factor in Cooling and Heating Mode + vrfEquivPipingLength = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('vrfEquivPipingLength', false) + vrfEquivPipingLength.setDisplayName('Equivalent Piping Length Used for Piping Correction Factor (ft)') + vrfEquivPipingLength.setDefaultValue(100.0) + args << vrfEquivPipingLength + + # Vertical Height Used for Piping Correction Factor + vrfPipingHeight = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('vrfPipingHeight', false) + vrfPipingHeight.setDisplayName('Vertical Height used for Piping Correction Factor (ft)') + vrfPipingHeight.setDefaultValue(35.0) + args << vrfPipingHeight + + # DOAS Fan Type + doasFanChs = OpenStudio::StringVector.new + doasFanChs << 'Constant' + doasFanChs << 'Variable' + doasFanType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasFanType', doasFanChs, true) + doasFanType.setDisplayName('DOAS Fan Flow Control - Variable means DCV controls') + doasFanType.setDefaultValue('Variable') + args << doasFanType + + # DOAS Energy Recovery + ervChs = OpenStudio::StringVector.new + ervChs << 'plate w/o economizer lockout' + ervChs << 'plate w/ economizer lockout' + ervChs << 'rotary wheel w/o economizer lockout' + ervChs << 'rotary wheel w/ economizer lockout' + ervChs << 'none' + doasERV = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasERV', ervChs, true) + doasERV.setDisplayName('DOAS Energy Recovery?') + doasERV.setDefaultValue('none') + args << doasERV + + # DOAS Evaporative Cooling + evapChs = OpenStudio::StringVector.new + evapChs << 'Direct Evaporative Cooler' + evapChs << 'none' + doasEvap = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasEvap', evapChs, true) + doasEvap.setDisplayName('DOAS Direct Evaporative Cooling ?') + doasEvap.setDefaultValue('none') + args << doasEvap + + # DOAS DX Cooling + doasDXEER = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('doasDXEER', false) + doasDXEER.setDisplayName('DOAS DX Cooling EER') + doasDXEER.setDefaultValue(10.0) + args << doasDXEER + + # make an argument for material and installation cost + # todo - I would like to split the costing out to the air loops weighted by area of building served vs. just sticking it on the building + costTotalHVACSystem = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('costTotalHVACSystem', true) + costTotalHVACSystem.setDisplayName('Total Cost for HVAC System ($).') + costTotalHVACSystem.setDefaultValue(0.0) + args << costTotalHVACSystem + + # make an argument to remove existing costs + remake_schedules = OpenStudio::Ruleset::OSArgument.makeBoolArgument('remake_schedules', true) + remake_schedules.setDisplayName('Apply recommended availability and ventilation schedules for air handlers?') + remake_schedules.setDefaultValue(true) + args << remake_schedules + + return args + end # end the arguments method + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # assign the user inputs to variables + space_type_to_edits_hash = {} + space_types = model.getSpaceTypes + space_types.each do |space_type| + if model.getSpaceTypeByName(space_type.name.get).is_initialized && !space_type.spaces.empty? + space_type = model.getSpaceTypeByName(space_type.name.get).get + space_type_to_edit = runner.getBoolArgumentValue(space_type.name.get.to_s, user_arguments) + space_type_to_edits_hash[space_type] = space_type_to_edit + end + end + + vrfCondenserType = runner.getStringArgumentValue('vrfCondenserType', user_arguments) + vrfCoolCOP = runner.getDoubleArgumentValue('vrfCoolCOP', user_arguments) + vrfHeatCOP = runner.getDoubleArgumentValue('vrfHeatCOP', user_arguments) + vrfMinOATHPHeat = runner.getDoubleArgumentValue('vrfMinOATHPHeat', user_arguments) + vrfDefrost = runner.getStringArgumentValue('vrfDefrost', user_arguments) + vrfHPHeatRecovery = runner.getStringArgumentValue('vrfHPHeatRecovery', user_arguments) + vrfEquivPipingLength = runner.getDoubleArgumentValue('vrfEquivPipingLength', user_arguments) + vrfPipingHeight = runner.getDoubleArgumentValue('vrfPipingHeight', user_arguments) + doasFanType = runner.getStringArgumentValue('doasFanType', user_arguments) + doasERV = runner.getStringArgumentValue('doasERV', user_arguments) + doasEvap = runner.getStringArgumentValue('doasEvap', user_arguments) + doasDXEER = runner.getDoubleArgumentValue('doasDXEER', user_arguments) + + parameters = { 'vrfCondenserType' => vrfCondenserType, + 'vrfCoolCOP' => vrfCoolCOP, + 'vrfHeatCOP' => vrfHeatCOP, + 'vrfMinOATHPHeat' => vrfMinOATHPHeat, + 'vrfDefrost' => vrfDefrost, + 'vrfHPHeatRecovery' => vrfHPHeatRecovery, + 'vrfEquivPipingLength' => vrfEquivPipingLength, + 'vrfPipingHeight' => vrfPipingHeight, + 'doasFanType' => doasFanType, + 'doasERV' => doasERV, + 'doasEvap' => doasEvap, + 'doasDXEER' => doasDXEER } + + ### START INPUTS + # assign the user inputs to variables + ceilingReturnPlenumSpaceType = runner.getOptionalWorkspaceObjectChoiceValue('ceilingReturnPlenumSpaceType', user_arguments, model) + costTotalHVACSystem = runner.getDoubleArgumentValue('costTotalHVACSystem', user_arguments) + remake_schedules = runner.getBoolArgumentValue('remake_schedules', user_arguments) + # check that spaceType was chosen and exists in model + ceilingReturnPlenumSpaceTypeCheck = OsLib_HelperMethods.checkOptionalChoiceArgFromModelObjects(ceilingReturnPlenumSpaceType, 'ceilingReturnPlenumSpaceType', 'to_SpaceType', runner, user_arguments) + ceilingReturnPlenumSpaceTypeCheck == false ? (return false) : (ceilingReturnPlenumSpaceType = ceilingReturnPlenumSpaceTypeCheck['modelObject']) + # default building/ secondary space types + standardBuildingTypeTest = [] # ML Not used yet + standardBuildingTypeTest = ['Office'] # ML Not used yet + secondarySpaceTypeTest = [] # empty for office + primarySpaceType = 'Office' + if doasFanType == 'Variable' + primaryHVAC = { 'doas' => true, 'fan' => 'Variable', 'heat' => 'Gas', 'cool' => 'SingleDX' } + else + primaryHVAC = { 'doas' => true, 'fan' => 'Constant', 'heat' => 'Gas', 'cool' => 'SingleDX' } + end + secondaryHVAC = { 'fan' => 'None', 'heat' => 'None', 'cool' => 'None' } # ML not used for office; leave or empty? + zoneHVAC = 'VRF' + chillerType = 'None' # set to none if chiller not used + radiantChillerType = 'None' # set to none if not radiant system + allHVAC = { 'primary' => primaryHVAC, 'secondary' => secondaryHVAC, 'zone' => zoneHVAC } + + ### END INPUTS + + ### START SORT ZONES + options = { 'standardBuildingTypeTest' => standardBuildingTypeTest, # ML Not used yet + 'secondarySpaceTypeTest' => secondarySpaceTypeTest, + 'ceilingReturnPlenumSpaceType' => ceilingReturnPlenumSpaceType } + zonesSorted = OsLib_HVAC.sortZones(model, runner, options, space_type_to_edits_hash) + zonesPrimary = zonesSorted['zonesPrimary'] + zonesSecondary = zonesSorted['zonesSecondary'] + zonesPlenum = zonesSorted['zonesPlenum'] + zonesUnconditioned = zonesSorted['zonesUnconditioned'] + ### END SORT ZONES + + ### START REPORT INITIAL CONDITIONS + OsLib_HVAC.reportConditions(model, runner, 'initial') + ### END REPORT INITIAL CONDITIONS + + ### START ASSIGN HVAC SCHEDULES + options = { 'primarySpaceType' => primarySpaceType, + 'allHVAC' => allHVAC, + 'remake_schedules' => remake_schedules } + schedulesHVAC = OsLib_HVAC.assignHVACSchedules(model, runner, options) + # assign schedules + primary_SAT_schedule = schedulesHVAC['primary_sat'] + building_HVAC_schedule = schedulesHVAC['hvac'] + building_ventilation_schedule = schedulesHVAC['ventilation'] + make_hot_water_plant = false + unless schedulesHVAC['hot_water'].nil? + hot_water_setpoint_schedule = schedulesHVAC['hot_water'] + make_hot_water_plant = true + end + make_chilled_water_plant = false + unless schedulesHVAC['chilled_water'].nil? + chilled_water_setpoint_schedule = schedulesHVAC['chilled_water'] + make_chilled_water_plant = true + end + make_radiant_hot_water_plant = false + unless schedulesHVAC['radiant_hot_water'].nil? + radiant_hot_water_setpoint_schedule = schedulesHVAC['radiant_hot_water'] + make_radiant_hot_water_plant = true + end + make_radiant_chilled_water_plant = false + unless schedulesHVAC['radiant_chilled_water'].nil? + radiant_chilled_water_setpoint_schedule = schedulesHVAC['radiant_chilled_water'] + make_radiant_chilled_water_plant = true + end + unless schedulesHVAC['hp_loop'].nil? + heat_pump_loop_setpoint_schedule = schedulesHVAC['hp_loop'] + end + unless schedulesHVAC['hp_loop_cooling'].nil? + heat_pump_loop_cooling_setpoint_schedule = schedulesHVAC['hp_loop_cooling'] + end + unless schedulesHVAC['hp_loop_heating'].nil? + heat_pump_loop_heating_setpoint_schedule = schedulesHVAC['hp_loop_heating'] + end + unless schedulesHVAC['mean_radiant_heating'].nil? + mean_radiant_heating_setpoint_schedule = schedulesHVAC['mean_radiant_heating'] + end + unless schedulesHVAC['mean_radiant_cooling'].nil? + mean_radiant_cooling_setpoint_schedule = schedulesHVAC['mean_radiant_cooling'] + end + ### END ASSIGN HVAC SCHEDULES + + # START REMOVE EQUIPMENT + options = {} + options['zonesPrimary'] = zonesPrimary + if options['zonesPrimary'].empty? + runner.registerInfo('User did not pick any zones to be added to VRF system, no changes to the model were made.') + else + OsLib_HVAC.removeEquipment(model, runner, options) + end + ### END REMOVE EQUIPMENT + + ### START CREATE NEW PLANTS + # create new plants + # hot water plant + if make_hot_water_plant + hot_water_plant = OsLib_HVAC.createHotWaterPlant(model, runner, hot_water_setpoint_schedule, 'Hot Water', parameters) + end + # chilled water plant + if make_chilled_water_plant + chilled_water_plant = OsLib_HVAC.createChilledWaterPlant(model, runner, chilled_water_setpoint_schedule, 'Chilled Water', chillerType) + end + # radiant hot water plant + if make_radiant_hot_water_plant + radiant_hot_water_plant = OsLib_HVAC.createHotWaterPlant(model, runner, radiant_hot_water_setpoint_schedule, 'Radiant Hot Water') + end + # chilled water plant + if make_radiant_chilled_water_plant + radiant_chilled_water_plant = OsLib_HVAC.createChilledWaterPlant(model, runner, radiant_chilled_water_setpoint_schedule, 'Radiant Chilled Water', radiantChillerType) + end + # condenser loop + # need condenser loop if there is a water-cooled chiller or if there is a water source heat pump loop or a water cooled VRF condenser + options = {} + options['zonesPrimary'] = zonesPrimary + options['zoneHVAC'] = zoneHVAC + if zoneHVAC.include?('SHP') || (zoneHVAC == 'VRF') && (parameters['vrfCondenserType'] == 'WaterCooled') + options['loop_setpoint_schedule'] = heat_pump_loop_setpoint_schedule + options['cooling_setpoint_schedule'] = heat_pump_loop_cooling_setpoint_schedule + options['heating_setpoint_schedule'] = heat_pump_loop_heating_setpoint_schedule + runner.registerInfo('yes, loop schedule created') + end + if parameters['vrfCondenserType'] == 'WaterCooled' + condenserLoops = OsLib_HVAC.createCondenserLoop(model, runner, options, parameters) + else + condenserLoops = {} + end + unless condenserLoops['condenser_loop'].nil? + condenser_loop = condenserLoops['condenser_loop'] + end + unless condenserLoops['heat_pump_loop'].nil? + heat_pump_loop = condenserLoops['heat_pump_loop'] + runner.registerInfo('vrf condenser loop is created') + end + ### END CREATE NEW PLANTS + + ### START CREATE PRIMARY AIRLOOPS + # populate inputs hash for create primary airloops method + options = {} + options['zonesPrimary'] = zonesPrimary + options['primaryHVAC'] = primaryHVAC + options['zoneHVAC'] = zoneHVAC + if primaryHVAC['doas'] + options['hvac_schedule'] = building_ventilation_schedule + options['ventilation_schedule'] = building_ventilation_schedule + else + # primary HVAC is multizone VAV + if zoneHVAC == 'DualDuct' + # primary system is a multizone VAV that cools only (primary system ventilation schedule is set to always off; hvac set to always on) + options['hvac_schedule'] = model.alwaysOnDiscreteSchedule + else + # primary system is multizone VAV that cools and ventilates + options['hvac_schedule'] = building_HVAC_schedule + options['ventilation_schedule'] = building_ventilation_schedule + end + end + options['primary_sat_schedule'] = primary_SAT_schedule + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + primary_airloops = OsLib_HVAC.createPrimaryAirLoops(model, runner, options, parameters) + ### END CREATE PRIMARY AIRLOOPS + if zoneHVAC.include? 'VRF' + options['heat_pump_loop'] = heat_pump_loop + end + vrf_airconditioners = OsLib_HVAC.createVRFAirConditioners(model, runner, options, parameters) + ### START CREATE SECONDARY AIRLOOPS + # populate inputs hash for create primary airloops method + options = {} + options['zonesSecondary'] = zonesSecondary + options['secondaryHVAC'] = secondaryHVAC + options['hvac_schedule'] = building_HVAC_schedule + options['ventilation_schedule'] = building_ventilation_schedule + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + # secondary_airloops = OsLib_HVAC.createSecondaryAirLoops(model, runner, options) + ### END CREATE SECONDARY AIRLOOPS + + ### START ASSIGN PLENUMS + options = { 'zonesPrimary' => zonesPrimary, 'zonesPlenum' => zonesPlenum } + zone_plenum_hash = OsLib_HVAC.validateAndAddPlenumZonesToSystem(model, runner, options) + ### END ASSIGN PLENUMS + + ### START CREATE PRIMARY ZONE EQUIPMENT + options = {} + options['zonesPrimary'] = zonesPrimary + options['zoneHVAC'] = zoneHVAC + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + if zoneHVAC.include?('SHP') || (zoneHVAC == 'VRF') + options['heat_pump_loop'] = heat_pump_loop + end + if zoneHVAC == 'DualDuct' + options['ventilation_schedule'] = building_ventilation_schedule + end + if zoneHVAC == 'Radiant' + options['radiant_hot_water_plant'] = radiant_hot_water_plant + options['radiant_chilled_water_plant'] = radiant_chilled_water_plant + options['mean_radiant_heating_setpoint_schedule'] = mean_radiant_heating_setpoint_schedule + options['mean_radiant_cooling_setpoint_schedule'] = mean_radiant_cooling_setpoint_schedule + end + OsLib_HVAC.createPrimaryZoneEquipment(model, runner, options, parameters) + ### END CREATE PRIMARY ZONE EQUIPMENT + + # START ADD DCV + options = {} + unless zoneHVAC == 'DualDuct' + options['primary_airloops'] = primary_airloops + end + # options["secondary_airloops"] = secondary_airloops + options['allHVAC'] = allHVAC + OsLib_HVAC.addDCV(model, runner, options) + # END ADD DCV + + # TODO: - add in lifecycle costs + expected_life = 25 + years_until_costs_start = 0 + costHVAC = costTotalHVACSystem + lcc_mat = OpenStudio::Model::LifeCycleCost.createLifeCycleCost('HVAC System', model.getBuilding, costHVAC, 'CostPerEach', 'Construction', expected_life, years_until_costs_start).get + + # # add AEDG tips + # aedgTips = ["HV04","HV10","HV12"] + + # # populate how to tip messages + # aedgTipsLong = OsLib_AedgMeasures.getLongHowToTips("SmMdOff",aedgTips.uniq.sort,runner) + # if not aedgTipsLong + # return false # this should only happen if measure writer passes bad values to getLongHowToTips + # end + + ### START REPORT FINAL CONDITIONS + OsLib_HVAC.reportConditions(model, runner, 'final') + ### END REPORT FINAL CONDITIONS + + return true + end # end the run method +end # end the measure + +# this allows the measure to be used by the application +VRFwithDOAS.new.registerWithApplication diff --git a/lib/measures/vr_fwith_doas/measure.xml b/lib/measures/vr_fwith_doas/measure.xml new file mode 100644 index 0000000..d39881d --- /dev/null +++ b/lib/measures/vr_fwith_doas/measure.xml @@ -0,0 +1,298 @@ + + 3.0 + vr_fwith_doas + 61816fc9-82f0-4787-a1bf-0ffb0ce66037 + 0463a4b1-34a2-4ba2-8339-a119b7900e4e + 20180717T215712Z + 87BA8B1E + VRFwithDOAS + VRFwithDOAS + Measure replaces existing HVAC system (if any) with a Variable Refrigerant Flow (VRF) system with DOAS HVAC system (one DOAS per floor). The VRF with DOAS system (centralized DOAS, with zone level conditioning) is applied to all space types except storage spaces like stairwells, mechanical/electrical rooms etc. + Airloops are dedicated to ventilation (DOAS) and have constant or variable speed fan operation, gas furnace heating,single speed DX cooling and optional energy recovery and/or direct evaporative cooling. Conditioning is provided at the zone level with VRF system with cycling fans. Only air cooled VRF system is modeled. + + + ceilingReturnPlenumSpaceType + This space type should be part of a ceiling return air plenum. + Choice + false + false + + + vrfCondenserType + VRF Condenser Type + Choice + true + false + AirCooled + + + AirCooled + AirCooled + + + + + vrfCoolCOP + VRF Rated Cooling COP (Not Including Supply Fan) + Double + false + false + 4 + + + vrfHeatCOP + VRF Rated Heating COP (Not Including Supply Fan) + Double + false + false + 4 + + + vrfMinOATHPHeat + Minimum Outdoor Temperature in Heat Pump Heating Mode (F) + Double + false + false + -4 + + + vrfDefrost + Defrost Strategy + Choice + true + false + Resistive + + + Resistive + Resistive + + + + + vrfHPHeatRecovery + Heat Pump Waste Heat Recovery + Choice + true + false + Yes + + + Yes + Yes + + + No + No + + + + + vrfEquivPipingLength + Equivalent Piping Length Used for Piping Correction Factor (ft) + Double + false + false + 100 + + + vrfPipingHeight + Vertical Height used for Piping Correction Factor (ft) + Double + false + false + 35 + + + doasFanType + DOAS Fan Flow Control - Variable means DCV controls + Choice + true + false + Variable + + + Constant + Constant + + + Variable + Variable + + + + + doasERV + DOAS Energy Recovery? + Choice + true + false + none + + + plate w/o economizer lockout + plate w/o economizer lockout + + + plate w/ economizer lockout + plate w/ economizer lockout + + + rotary wheel w/o economizer lockout + rotary wheel w/o economizer lockout + + + rotary wheel w/ economizer lockout + rotary wheel w/ economizer lockout + + + none + none + + + + + doasEvap + DOAS Direct Evaporative Cooling ? + Choice + true + false + none + + + Direct Evaporative Cooler + Direct Evaporative Cooler + + + none + none + + + + + doasDXEER + DOAS DX Cooling EER + Double + false + false + 10 + + + costTotalHVACSystem + Total Cost for HVAC System ($). + Double + true + false + 0 + + + remake_schedules + Apply recommended availability and ventilation schedules for air handlers? + Boolean + true + false + true + + + true + true + + + false + false + + + + + + + + HVAC.Whole System + + + + Uses SketchUp API + false + boolean + + + Measure Type + ModelMeasure + string + + + + + AedgOfficeHvacWshpDoas_Test.rb + rb + test + 6E9C8413 + + + AEDG_HVAC_GenericTestModel_0225_a.osm + osm + test + ED45BF2B + + + measure-backup-1.rb + rb + test + 7DA88440 + + + measure-backup.rb + rb + test + 5EC116F9 + + + OsLib_AedgMeasures.rb + rb + resource + 400D07BE + + + OsLib_Constructions.rb + rb + resource + 1DBDBCB3 + + + OsLib_Geometry.rb + rb + resource + 730B5D71 + + + OsLib_HelperMethods.rb + rb + resource + 15A9730B + + + OsLib_LightingAndEquipment.rb + rb + resource + E76DE29C + + + OsLib_Schedules.rb + rb + resource + C53CDDCD + + + measure.rb + rb + + E173D503 + + + OsLib_HVAC.rb + rb + resource + CD9C05F6 + + + diff --git a/lib/measures/vr_fwith_doas/resources/OsLib_AedgMeasures.rb b/lib/measures/vr_fwith_doas/resources/OsLib_AedgMeasures.rb new file mode 100644 index 0000000..0449d71 --- /dev/null +++ b/lib/measures/vr_fwith_doas/resources/OsLib_AedgMeasures.rb @@ -0,0 +1,454 @@ +# frozen_string_literal: true + +module OsLib_AedgMeasures + def self.getClimateZoneNumber(model, runner) + # get ashrae climate zone from model + ashraeClimateZone = '' + climateZones = model.getClimateZones + climateZones.climateZones.each do |climateZone| + if climateZone.institution == 'ASHRAE' + ashraeClimateZone = climateZone.value + runner.registerInfo("Using ASHRAE Climate zone #{ashraeClimateZone} for AEDG recommendations.") + end + end + + if ashraeClimateZone == '' # should this be not applicable or error? + runner.registerError("Please assign an ASHRAE Climate Zone to your model using the site tab in the OpenStudio application. The measure can't make AEDG recommendations without this information.") + return false # note - for this to work need to check for false in measure.rb and add return false there as well. + else + climateZoneNumber = ashraeClimateZone.split(//).first + end + + # expected climate zone number should be 1 through 8 + if !['1', '2', '3', '4', '5', '6', '7', '8'].include? climateZoneNumber + runner.registerError('ASHRAE climate zone number is not within expected range of 1 to 8.') + return false # note - for this to work need to check for false in measure.rb and add return false there as well. + end + + result = climateZoneNumber + # don't add return false here, need to catch errors above + end # end of def OsLib_AedgMeasures.getClimateZoneNumber(model,runner) + + def self.getLongHowToTips(guide, aedgTips, runner) + # get tips + if guide == 'K12' + hash = OsLib_AedgMeasures.getK12Tips + elsif guide == 'SmMdOff' + hash = OsLib_AedgMeasures.getSmMdOffTips + else + runner.registerError("#{guide} is an invalid value. Can't generate how to tip messages.") + return false # note - for this to work need to check for false in measure.rb and add return false there as well. + # this should only happen if measure writer passes bad values to getLongHowToTips + end + + # array for info string + string = [] + + # create info messages + aedgTips.each do |aedgtip| + if hash[aedgtip] != hash[0] + string << hash[aedgtip] + else + runner.registerWarning("#{aedgtip} is an invalid key for tip hash. Can't generate tip.") + end + end + + # see if expected number of messages created + if aedgTips.size != string.size + runner.registerWarning('One more more messages were not created.') + end + + result = "#{hash[0]}: #{string.join(', ')}." # hash[0] bad key will return default value + # don't add return false here, need to catch errors above + end # end of def OsLib_AedgMeasures.getClimateZoneNumber(model,runner) + + # hash of how to tips for K-12 school AEDG + def self.getK12Tips + # envelope tips + @aedgK12HowToTipHash = Hash.new('K-12 Schools AEDG How to Implement Recommendations') + @aedgK12HowToTipHash['EN01'] = 'EN1 Cool Roofs' + @aedgK12HowToTipHash['EN02'] = 'EN2 Roofs-Insulation Entirely above Deck' + @aedgK12HowToTipHash['EN03'] = 'EN3 Roofs-Attics, and Other Roofs' + @aedgK12HowToTipHash['EN04'] = 'EN4 Roofs-Metal Buildings' + @aedgK12HowToTipHash['EN05'] = 'EN5 Walls-Mass' + @aedgK12HowToTipHash['EN06'] = 'EN6 Walls-Steel Framed' + @aedgK12HowToTipHash['EN07'] = 'EN7 Walls-Wood Frame and Other' + @aedgK12HowToTipHash['EN08'] = 'EN8 Walls-Metal Building' + @aedgK12HowToTipHash['EN09'] = 'EN9 Below-Grade Walls' + @aedgK12HowToTipHash['EN10'] = 'EN10 Floors-Mass' + @aedgK12HowToTipHash['EN11'] = 'EN11 Floors-Metal Joist or Wood Joist/Wood Frame' + @aedgK12HowToTipHash['EN12'] = 'EN12 Slab-on-Grade Floors-Unheated' + @aedgK12HowToTipHash['EN13'] = 'EN13 Slab-on-Grade Floors-Heated' + @aedgK12HowToTipHash['EN14'] = 'EN14 Slab Edge Insulation' + @aedgK12HowToTipHash['EN15'] = 'EN15 Doors-Opaque, Swinging' + @aedgK12HowToTipHash['EN16'] = 'EN16 Doors-Opaque, Roll-Up, or Sliding' + @aedgK12HowToTipHash['EN17'] = 'EN17 Air Infiltration Control' + @aedgK12HowToTipHash['EN18'] = 'EN18 Vestibules' + @aedgK12HowToTipHash['EN19'] = 'EN19 Alternative Constructions' + @aedgK12HowToTipHash['EN20'] = 'EN20 Truss Heel Heights' + @aedgK12HowToTipHash['EN21'] = 'EN21 Moisture Control' + @aedgK12HowToTipHash['EN22'] = 'EN22 Thermal Bridging-Opaque Components' + @aedgK12HowToTipHash['EN23'] = 'EN23 Thermal Bridging-Fenestration' + @aedgK12HowToTipHash['EN24'] = 'EN24 Fenestration Descriptions' + @aedgK12HowToTipHash['EN25'] = 'EN25 View Window-to Floor Area Ratio (VFR)' + @aedgK12HowToTipHash['EN26'] = 'EN26 Unwanted Solar Heat Gain Is Most Effectively Controlled on the Outside of the Building' + @aedgK12HowToTipHash['EN27'] = 'EN27 Operable versus Fixed Windows' + @aedgK12HowToTipHash['EN28'] = 'EN28 Building Form and Window Orientation' + @aedgK12HowToTipHash['EN29'] = 'EN29 Glazing' + @aedgK12HowToTipHash['EN30'] = 'EN30 Obstructions and Planting' + @aedgK12HowToTipHash['EN31'] = 'EN31 Window Orientation' + @aedgK12HowToTipHash['EN32'] = 'EN32 Passive Solar' + @aedgK12HowToTipHash['EN33'] = 'EN33 Glazing' + + # daylighting tips + @aedgK12HowToTipHash['DL01'] = 'DL1 General Principles' + @aedgK12HowToTipHash['DL02'] = 'DL2 Consider Daylighting Early in the Design Process' + @aedgK12HowToTipHash['DL03'] = 'DL3 Space Types' + @aedgK12HowToTipHash['DL04'] = 'DL4 How to Select Daylighting Strategies' + @aedgK12HowToTipHash['DL05'] = 'DL5 Recommended Daylighting Fenestration-to-Floor Area Ratios' + @aedgK12HowToTipHash['DL06'] = 'DL6 View Windows Separate from Daylighting Strategy' + @aedgK12HowToTipHash['DL07'] = 'DL7 Lighting Design Criteria' + @aedgK12HowToTipHash['DL08'] = 'DL8 Use Daylighting Analysis Tools to Optimize Design' + @aedgK12HowToTipHash['DL09'] = 'DL9 Building Orientation' + @aedgK12HowToTipHash['DL10'] = 'DL10 Ceiling Height' + @aedgK12HowToTipHash['DL11'] = 'DL11 Outdoor Surface Reflectance' + @aedgK12HowToTipHash['DL12'] = 'DL12 Eliminate Direct Beam Radiation' + @aedgK12HowToTipHash['DL13'] = 'DL13 Daylighting Control for Audio-Visual (AV) Projection Activities' + @aedgK12HowToTipHash['DL14'] = 'DL14 Interior Finishes for Daylighting' + @aedgK12HowToTipHash['DL15'] = 'DL15 Calibration and Commissioning' + @aedgK12HowToTipHash['DL16'] = 'DL16 Dimming Controls' + @aedgK12HowToTipHash['DL17'] = 'DL17 Photosensor Placement and Lighting Layout' + @aedgK12HowToTipHash['DL18'] = 'DL18 Photosensor Specifications' + @aedgK12HowToTipHash['DL19'] = 'DL19 Select Compatible Light Fixtures' + @aedgK12HowToTipHash['DL20'] = 'DL20 Sidelighting Patterns' + @aedgK12HowToTipHash['DL21'] = 'DL21 South-Facing Classrooms-Configuration of Apertures' + @aedgK12HowToTipHash['DL22'] = 'DL22 South-Facing Classrooms-Glazing Area and Fenestration Type' + @aedgK12HowToTipHash['DL23'] = 'DL23 View Glazing and VTs' + @aedgK12HowToTipHash['DL24'] = 'DL24 South-Facing Classrooms-Make Light Shelf Durable and Reflective' + @aedgK12HowToTipHash['DL25'] = 'DL25 North-Facing Classroom-Configuration of Apertures' + @aedgK12HowToTipHash['DL26'] = 'DL26 North-Facing Classroom-Glazing Area and Fenestration Type' + @aedgK12HowToTipHash['DL27'] = 'DL27 South-and North-Facing Classrooms-Sloped Ceilings' + @aedgK12HowToTipHash['DL28'] = 'DL28 South-and North-Facing Classrooms-Recognize the Limits of Side Daylighting' + @aedgK12HowToTipHash['DL29'] = 'DL29 Classroom Toplighting Pattern' + @aedgK12HowToTipHash['DL30'] = 'DL30 Sizing the Roof Monitors' + @aedgK12HowToTipHash['DL31'] = 'DL31 Overhang for Roof Monitor' + @aedgK12HowToTipHash['DL32'] = 'DL32 Use Light-Colored Roofing in Front of Monitors' + @aedgK12HowToTipHash['DL33'] = 'DL33 Use Baffles to Block Direct Beam Radiation and Diffuse Light' + @aedgK12HowToTipHash['DL34'] = 'DL34 Minimize Contrast at Well-Ceiling Intersection' + @aedgK12HowToTipHash['DL35'] = 'DL35 Address the Monitor Design' + @aedgK12HowToTipHash['DL36'] = 'DL36 Let the Heat Stratify' + @aedgK12HowToTipHash['DL37'] = 'DL37 Minimize the Depth of the Ceiling Cavity' + @aedgK12HowToTipHash['DL38'] = 'DL38 Classroom Sidelighting Plus Toplighting Pattern' + @aedgK12HowToTipHash['DL39'] = 'DL39 Gym Toplighting Overview' + @aedgK12HowToTipHash['DL40'] = 'DL40 Gym Toplighting Sizing' + @aedgK12HowToTipHash['DL41'] = 'DL41 Gym Toplighting Using South-Facing Roof Monitors' + @aedgK12HowToTipHash['DL42'] = 'DL42 Gym Toplighting in Combination with North-and South-Facing Sidelighting' + + # electric lighting tips + @aedgK12HowToTipHash['EL01'] = 'EL1 Light-Colored Interior Finishes' + @aedgK12HowToTipHash['EL02'] = 'EL2 Color Rendering Index' + @aedgK12HowToTipHash['EL03'] = 'EL3 Color Temperature' + @aedgK12HowToTipHash['EL04'] = 'EL4 Linear Fluorescent Lamps and Ballasts' + @aedgK12HowToTipHash['EL05'] = 'EL5 Compact Fluorescent' + @aedgK12HowToTipHash['EL06'] = 'EL6 Metal Halide' + @aedgK12HowToTipHash['EL07'] = 'EL7 Light-Emitting Diode (LED) Lighting' + @aedgK12HowToTipHash['EL08'] = 'EL8 Occupancy Sensors' + @aedgK12HowToTipHash['EL09'] = 'EL9 Multilevel Switching or Dimming' + @aedgK12HowToTipHash['EL10'] = 'EL10 Exit Signs' + @aedgK12HowToTipHash['EL11'] = 'EL11 Circuiting and Switching' + @aedgK12HowToTipHash['EL12'] = 'EL12 Electrical Lighting Design for Schools' + @aedgK12HowToTipHash['EL13'] = 'EL13 Classroom Lighting' + @aedgK12HowToTipHash['EL14'] = 'EL14 Gym Lighting' + @aedgK12HowToTipHash['EL15'] = 'EL15 Lighting for a Multipurpose Room' + @aedgK12HowToTipHash['EL16'] = 'EL16 Lighting for a Library or Media Center' + @aedgK12HowToTipHash['EL17'] = 'EL17 Corridor Lighting' + @aedgK12HowToTipHash['EL18'] = 'EL18 Lighting for Offices and Teacher Support Rooms' + @aedgK12HowToTipHash['EL19'] = 'EL19 Lighting for Locker Areas and Restrooms' + @aedgK12HowToTipHash['EL20'] = 'EL20 Twenty-Four Hour Lighting' + @aedgK12HowToTipHash['EL21'] = 'EL21 Exterior Lighting Power-Parking Lots and Drives' + @aedgK12HowToTipHash['EL22'] = 'EL22 Exterior Lighting Power-Walkways' + @aedgK12HowToTipHash['EL23'] = 'EL23 Decorative Façade Lighting' + @aedgK12HowToTipHash['EL24'] = 'EL24 Sources' + @aedgK12HowToTipHash['EL25'] = 'EL25 Controls' + + # plug load tips + @aedgK12HowToTipHash['PL01'] = 'PL1 General Guidance' + @aedgK12HowToTipHash['PL02'] = 'PL2 Computer (Information Technology) Equipment' + @aedgK12HowToTipHash['PL03'] = 'PL3 Staff and Occupant Equipment Control' + @aedgK12HowToTipHash['PL04'] = 'PL4 Phantom/Parasitic Loads' + @aedgK12HowToTipHash['PL05'] = 'PL5 ENERGY STAR Appliances/Equipment' + @aedgK12HowToTipHash['PL06'] = 'PL6 Electrical Distribution System' + + # kitchen tips + @aedgK12HowToTipHash['KE01'] = 'KE1 General Guidance' + @aedgK12HowToTipHash['KE02'] = 'KE2 Energy-Efficient Kitchen Equipment' + @aedgK12HowToTipHash['KE03'] = 'KE3 Exhaust and Ventilation Energy Use' + @aedgK12HowToTipHash['KE04'] = 'KE4 Minimize Hot-Water Use' + @aedgK12HowToTipHash['KE05'] = 'KE5 High-Efficiency Walk-in Refrigeration Systems' + @aedgK12HowToTipHash['KE06'] = 'KE6 Position Hooded Appliances to Achieve Lower Exhaust Rates' + @aedgK12HowToTipHash['KE07'] = 'KE7 Operating Considerations' + + # service water heating tips + @aedgK12HowToTipHash['WH01'] = 'WH1 Service Water -Heating Types' + @aedgK12HowToTipHash['WH02'] = 'WH2 System Descriptions' + @aedgK12HowToTipHash['WH03'] = 'WH3 Sizing' + @aedgK12HowToTipHash['WH04'] = 'WH4 Equipment Efficiency' + @aedgK12HowToTipHash['WH05'] = 'WH5 Location' + @aedgK12HowToTipHash['WH06'] = 'WH6 Pipe Insulation' + @aedgK12HowToTipHash['WH07'] = 'WH7 Solar Hot-Water Systems' + + # hvac tips + @aedgK12HowToTipHash['HV01'] = 'HV1 Ground-Source Heat Pump System' + @aedgK12HowToTipHash['HV02'] = 'HV2 Fan-Coil System' + @aedgK12HowToTipHash['HV03'] = 'HV3 Multiple-Zone, Variable-Air-Volume (VAV) Air Handlers' + @aedgK12HowToTipHash['HV04'] = 'HV4 Dedicated Outdoor Air System (DOAS)' + @aedgK12HowToTipHash['HV05'] = 'HV5 Exhaust Air Energy Recovery' + @aedgK12HowToTipHash['HV06'] = 'HV6 Chilled-Water System' + @aedgK12HowToTipHash['HV07'] = 'HV7 Water Heating System' + @aedgK12HowToTipHash['HV08'] = 'HV8 Condenser-Water System for GSHPs' + @aedgK12HowToTipHash['HV09'] = 'HV9 Cooling and Heating Load Calculations' + @aedgK12HowToTipHash['HV10'] = 'HV10 Ventilation Air' + @aedgK12HowToTipHash['HV11'] = 'HV11 Cooling and Heating Equipment Efficiencies' + @aedgK12HowToTipHash['HV12'] = 'HV12 Fan Power and Motor Efficiencies' + @aedgK12HowToTipHash['HV13'] = 'HV13 Part-Load Dehumidification' + @aedgK12HowToTipHash['HV14'] = 'HV14 Economizer' + @aedgK12HowToTipHash['HV15'] = 'HV15 Demand-Controlled Ventilation' + @aedgK12HowToTipHash['HV16'] = 'HV16 System-Level Control Strategies' + @aedgK12HowToTipHash['HV17'] = 'HV17 Thermal Zoning' + @aedgK12HowToTipHash['HV18'] = 'HV18 Ductwork Design and Construction' + @aedgK12HowToTipHash['HV19'] = 'HV19 Duct Insulation' + @aedgK12HowToTipHash['HV20'] = 'HV20 Duct Sealing and Leakage Testing' + @aedgK12HowToTipHash['HV21'] = 'HV21 Exhaust Air Systems' + @aedgK12HowToTipHash['HV22'] = 'HV22 Testing, Adjusting, and Balancing' + @aedgK12HowToTipHash['HV23'] = 'HV23 Air Cleaning' + @aedgK12HowToTipHash['HV24'] = 'HV24 Relief versus Return Fans' + @aedgK12HowToTipHash['HV25'] = 'HV25 Zone Temperature Control' + @aedgK12HowToTipHash['HV26'] = 'HV26 Heating Sources' + @aedgK12HowToTipHash['HV27'] = 'HV27 Noise Control' + @aedgK12HowToTipHash['HV28'] = 'HV28 Proper Maintenance' + # bonus hvac tips + @aedgK12HowToTipHash['HV29'] = 'HV29 Natural Ventilation and Naturally Conditioned Spaces' + @aedgK12HowToTipHash['HV30'] = 'HV30 Thermal Storage' + @aedgK12HowToTipHash['HV31'] = 'HV31 Thermal Mass' + @aedgK12HowToTipHash['HV32'] = 'HV32 Thermal Displacement Ventilation' + @aedgK12HowToTipHash['HV33'] = 'HV33 ASHRAE Standard 62.1 IAQ Procedure' + @aedgK12HowToTipHash['HV34'] = 'HV34 Evaporative Cooling' + + # commissioning tips + @aedgK12HowToTipHash['QA01'] = 'QA1 Design and Construction Team' + @aedgK12HowToTipHash['QA02'] = 'QA2 Owner’s Project Requirements and Basis of Design' + @aedgK12HowToTipHash['QA03'] = 'QA3 Selection of Quality Assurance Provider' + @aedgK12HowToTipHash['QA04'] = 'QA4 Design and Construction Schedule' + @aedgK12HowToTipHash['QA05'] = 'QA5 Design Review' + @aedgK12HowToTipHash['QA06'] = 'QA6 Defining Quality Assurance at Pre-Bid' + @aedgK12HowToTipHash['QA07'] = 'QA7 Verifying Building Envelope Construction' + @aedgK12HowToTipHash['QA08'] = 'QA8 Verifying Lighting Construction' + @aedgK12HowToTipHash['QA09'] = 'QA9 Verifying Electrical and HVAC Systems Construction' + @aedgK12HowToTipHash['QA10'] = 'QA10 Functional Performance Testing' + @aedgK12HowToTipHash['QA11'] = 'QA11 Substantial Completion' + @aedgK12HowToTipHash['QA12'] = 'QA12 Final Acceptance' + @aedgK12HowToTipHash['QA13'] = 'QA13 Establish Building Operation and Maintenance Program' + @aedgK12HowToTipHash['QA14'] = 'QA14 Monitor Post-Occupancy Performance' + @aedgK12HowToTipHash['QA15'] = 'QA15 M&V Electrical Panel Guidance' + @aedgK12HowToTipHash['QA16'] = 'QA16 M&V Data Management and Access' + @aedgK12HowToTipHash['QA17'] = 'QA17 M&V Benchmarking' + @aedgK12HowToTipHash['QA18'] = 'QA18 The Building as a Teaching Tool' + + # renewable energy tips + @aedgK12HowToTipHash['RE01'] = 'RE1 Photovoltaic (PV) Systems' + @aedgK12HowToTipHash['RE02'] = 'RE2 Solar Hot Water Systems' + @aedgK12HowToTipHash['RE03'] = 'RE3 Wind Turbine Power' + + result = @aedgK12HowToTipHash + return result + end # end of OsLib_AedgMeasures.getK12Tips + + # hash of how to tips for small to medium office buildings AEDG + def self.getSmMdOffTips + # envelope tips + aedgSmMdOffHowToTipHash = Hash.new('Small and Medium Offices AEDG How to Implement Recommendations') + aedgSmMdOffHowToTipHash['EN01'] = 'EN1 Cool Roofs' + aedgSmMdOffHowToTipHash['EN02'] = 'EN2 Roofs-Insulation Entirely above Deck' + aedgSmMdOffHowToTipHash['EN03'] = 'EN3 Roofs-Attics, and Other Roofs' + aedgSmMdOffHowToTipHash['EN04'] = 'EN4 Roofs-Metal Buildings' + aedgSmMdOffHowToTipHash['EN05'] = 'EN5 Walls-Mass' + aedgSmMdOffHowToTipHash['EN06'] = 'EN6 Walls-Steel Framed' + aedgSmMdOffHowToTipHash['EN07'] = 'EN7 Walls-Wood Frame and Other' + aedgSmMdOffHowToTipHash['EN08'] = 'EN8 Walls-Metal Building' + aedgSmMdOffHowToTipHash['EN09'] = 'EN9 Walls-Below-Grade' + aedgSmMdOffHowToTipHash['EN10'] = 'EN10 Floors-Mass' + aedgSmMdOffHowToTipHash['EN11'] = 'EN11 Floors-Metal Joist or Wood Joist/Wood Frame' + aedgSmMdOffHowToTipHash['EN12'] = 'EN12 Slab-on-Grade Floors-Unheated' + aedgSmMdOffHowToTipHash['EN13'] = 'EN13 Slab-on-Grade Floors-Heated' + aedgSmMdOffHowToTipHash['EN14'] = 'EN14 Slab Edge Insulation' + aedgSmMdOffHowToTipHash['EN15'] = 'EN15 Doors-Opaque, Swinging' + aedgSmMdOffHowToTipHash['EN16'] = 'EN16 Doors-Opaque, Roll-Up, or Sliding' + aedgSmMdOffHowToTipHash['EN17'] = 'EN17 Air Infiltration Control' + aedgSmMdOffHowToTipHash['EN18'] = 'EN18 Vestibules' + aedgSmMdOffHowToTipHash['EN19'] = 'EN19 Alternative Constructions' + aedgSmMdOffHowToTipHash['EN20'] = 'EN20 Truss Heel Heights' + aedgSmMdOffHowToTipHash['EN21'] = 'EN21 Moisture Control' + aedgSmMdOffHowToTipHash['EN22'] = 'EN22 Thermal Bridging-Opaque Components' + aedgSmMdOffHowToTipHash['EN23'] = 'EN23 Thermal Bridging-Fenestration' + aedgSmMdOffHowToTipHash['EN24'] = 'EN24 Vertical Fenestration Descriptions' + aedgSmMdOffHowToTipHash['EN25'] = 'EN25 Window-to-Wall Ratio (WWR)' + aedgSmMdOffHowToTipHash['EN26'] = 'EN26 Unwanted Solar Heat Gain Is Most Effectively Controlled on the Outside of the Building' + aedgSmMdOffHowToTipHash['EN27'] = 'EN27 Operable versus Fixed Windows' + aedgSmMdOffHowToTipHash['EN28'] = 'EN28 Building Form and Window Orientation' + aedgSmMdOffHowToTipHash['EN29'] = 'EN29 Glazing' + aedgSmMdOffHowToTipHash['EN30'] = 'EN30 Obstructions and Planting' + aedgSmMdOffHowToTipHash['EN31'] = 'EN31 Window Orientation' + aedgSmMdOffHowToTipHash['EN32'] = 'EN32 Passive Solar' + aedgSmMdOffHowToTipHash['EN33'] = 'EN33 Glazing' + aedgSmMdOffHowToTipHash['EN34'] = 'EN34 Visible Transmittance (VT)' + aedgSmMdOffHowToTipHash['EN35'] = 'EN35 Separating Views and Daylight' + aedgSmMdOffHowToTipHash['EN36'] = 'EN36 Color-Neutral Glazing' + aedgSmMdOffHowToTipHash['EN37'] = 'EN37 Reflectivity of Glass' + aedgSmMdOffHowToTipHash['EN38'] = 'EN38 Light-to-Solar-Gain Ratio' + aedgSmMdOffHowToTipHash['EN39'] = 'EN39 High Ceilings' + aedgSmMdOffHowToTipHash['EN40'] = 'EN40 Light Shelves' + + # daylighting tips + aedgSmMdOffHowToTipHash['DL01'] = 'DL1 Daylighting Early in the Design Process' + aedgSmMdOffHowToTipHash['DL02'] = 'DL2 Daylighting Analysis Tools to Optimize Design' + aedgSmMdOffHowToTipHash['DL03'] = 'DL3 Space Types, Layout, and Daylight' + aedgSmMdOffHowToTipHash['DL04'] = 'DL4 Building Orientation and Daylight' + aedgSmMdOffHowToTipHash['DL05'] = 'DL5 Building Shape and Daylight' + aedgSmMdOffHowToTipHash['DL06'] = 'DL6 Window-to-Wall Ratio (WWR)' + aedgSmMdOffHowToTipHash['DL07'] = 'DL7 Sidelighting-Ceiling and Window Height' + aedgSmMdOffHowToTipHash['DL08'] = 'Sidelighting-Clerestory Windows' + aedgSmMdOffHowToTipHash['DL09'] = 'DL9 Sidelighting-Borrowed Light' + aedgSmMdOffHowToTipHash['DL10'] = 'DL10 Sidelighting-Wall-to-Wall Windows' + aedgSmMdOffHowToTipHash['DL11'] = 'DL11 Sidelighting-Punched Windows' + aedgSmMdOffHowToTipHash['DL12'] = 'DL12 Shading Systems to Eliminate Direct-Beam Radiation' + aedgSmMdOffHowToTipHash['DL13'] = 'DL13 Daylighting Control for Audiovisual Activities' + aedgSmMdOffHowToTipHash['DL14'] = 'DL14 Interior Finishes for Daylighting' + aedgSmMdOffHowToTipHash['DL15'] = 'DL15 Outdoor Surface Reflectance' + aedgSmMdOffHowToTipHash['DL16'] = 'DL16 Calibration and Commissioning' + aedgSmMdOffHowToTipHash['DL17'] = 'DL17 Dimming Controls' + aedgSmMdOffHowToTipHash['DL18'] = 'DL18 Photosensor Placement and Lighting Layout' + aedgSmMdOffHowToTipHash['DL19'] = 'DL19 Photosensor Specifications' + aedgSmMdOffHowToTipHash['DL20'] = 'DL20 Select Compatible Light Fixtures' + # bonus daylighting tips + aedgSmMdOffHowToTipHash['DL21'] = 'DL21 Toplighting' + aedgSmMdOffHowToTipHash['DL22'] = 'DL22 Rooftop Monitors' + aedgSmMdOffHowToTipHash['DL23'] = 'DL23 Rooftop Monitor Design' + aedgSmMdOffHowToTipHash['DL24'] = 'DL24 Skylights' + aedgSmMdOffHowToTipHash['DL25'] = 'DL25 Toplighting-Thermal Transmittance (Climate Zones 1-3)' + aedgSmMdOffHowToTipHash['DL26'] = 'DL26 Toplighting-Thermal Transmittance (Climate Zones 4-8)' + aedgSmMdOffHowToTipHash['DL27'] = 'DL27 Toplighting-Ceiling Height Differentials' + + # electric lighting tips + aedgSmMdOffHowToTipHash['EL01'] = 'EL1 Savings and Occupant Acceptance' + aedgSmMdOffHowToTipHash['EL02'] = 'EL2 Space Planning-Open Offices' + aedgSmMdOffHowToTipHash['EL03'] = 'EL3 Space Planning-Private Offices, Conference Rooms, and Break Rooms' + aedgSmMdOffHowToTipHash['EL04'] = 'EL4 Light-Colored Interior Finishes' + aedgSmMdOffHowToTipHash['EL05'] = 'EL5 Task Lighting' + aedgSmMdOffHowToTipHash['EL06'] = 'EL6 Color Rendering Index (CRI)' + aedgSmMdOffHowToTipHash['EL07'] = 'EL7 Color Temperature' + aedgSmMdOffHowToTipHash['EL08'] = 'EL8 Linear Fluorescent Lamps and Ballasts' + aedgSmMdOffHowToTipHash['EL09'] = 'EL9 Occupancy Sensors' + aedgSmMdOffHowToTipHash['EL10'] = 'EL10 Multilevel Switching' + aedgSmMdOffHowToTipHash['EL11'] = 'EL11 Daylight-Responsive Controls' + aedgSmMdOffHowToTipHash['EL12'] = 'EL12 Exit Signs' + aedgSmMdOffHowToTipHash['EL13'] = 'EL13 Light Fixture Distribution' + aedgSmMdOffHowToTipHash['EL14'] = 'EL14 Open-Plan Offices' + aedgSmMdOffHowToTipHash['EL15'] = 'EL15 Private Offices' + aedgSmMdOffHowToTipHash['EL16'] = 'EL16 Conference Rooms/Meeting Rooms' + aedgSmMdOffHowToTipHash['EL17'] = 'EL17 Corridors' + aedgSmMdOffHowToTipHash['EL18'] = 'EL18 Storage Areas' + aedgSmMdOffHowToTipHash['EL19'] = 'EL19 Lobbies' + aedgSmMdOffHowToTipHash['EL20'] = 'EL20 Twenty-Four Hour Lighting' + aedgSmMdOffHowToTipHash['EL21'] = 'EL21 Exterior Lighting Power-Parking Lots and Drives' + aedgSmMdOffHowToTipHash['EL22'] = 'EL22 Exterior Lighting Power-Walkways' + aedgSmMdOffHowToTipHash['EL23'] = 'EL23 Decorative Façade Lighting' + aedgSmMdOffHowToTipHash['EL24'] = 'EL24 Sources' + aedgSmMdOffHowToTipHash['EL25'] = 'EL25 Controls' + + # plug load tips + aedgSmMdOffHowToTipHash['PL01'] = 'PL1 Connected Wattage' + aedgSmMdOffHowToTipHash['PL02'] = 'PL2 Laptop Computers' + aedgSmMdOffHowToTipHash['PL03'] = 'PL3 Occupancy Controls' + aedgSmMdOffHowToTipHash['PL04'] = 'PL4 Parasitic Loads' + aedgSmMdOffHowToTipHash['PL05'] = 'PL5 Printing Equipment' + aedgSmMdOffHowToTipHash['PL06'] = 'PL6 Unnecessary Equipment' + + # service water heating tips + aedgSmMdOffHowToTipHash['WH01'] = 'WH1 Service Water Heating Types' + aedgSmMdOffHowToTipHash['WH02'] = 'WH2 System Descriptions' + aedgSmMdOffHowToTipHash['WH03'] = 'WH3 Sizing' + aedgSmMdOffHowToTipHash['WH04'] = 'WH4 Equipment Efficiency' + aedgSmMdOffHowToTipHash['WH05'] = 'WH5 Location' + aedgSmMdOffHowToTipHash['WH06'] = 'WH6 Pipe Insulation' + + # hvac tips + aedgSmMdOffHowToTipHash['HV01'] = 'HV1 Cooling and Heating Loads' + aedgSmMdOffHowToTipHash['HV02'] = 'HV2 Certification of HVAC Equipment' + aedgSmMdOffHowToTipHash['HV03'] = "HV3 Single-Zone, Packaged Air-Source Heat Pump Systems (or Split Heat Pump +Systems) with Electric Resistance Supplemental Heat and DOASs" + aedgSmMdOffHowToTipHash['HV04'] = 'HV4 Water-Source Heat Pumps (WSHPs)' + aedgSmMdOffHowToTipHash['HV05'] = 'HV5 Ground-Coupled Water-Source Heat Pump (WSHP) System' + aedgSmMdOffHowToTipHash['HV06'] = "HV6 Multiple-Zone, VAV Packaged DX Rooftop Units with a Hot-Water Coil, +Indirect Gas Furnace, or Electric Resistance in the Rooftop Unit and +Convection Heat in the Spaces" + aedgSmMdOffHowToTipHash['HV07'] = "HV7 Multiple-Zone, VAV Air-Handling Units with Packaged Air-Cooled Chiller and +Gas-Fired Boiler" + aedgSmMdOffHowToTipHash['HV08'] = 'Fan-Coils' + aedgSmMdOffHowToTipHash['HV09'] = 'HV9 Radiant Heating and Cooling and DOAS' + aedgSmMdOffHowToTipHash['HV10'] = 'HV10 Dedicated Outdoor Air Systems (100% Outdoor Air Systems)' + aedgSmMdOffHowToTipHash['HV11'] = 'HV11 Part-Load Dehumidification' + aedgSmMdOffHowToTipHash['HV12'] = 'HV12 Exhaust Air Energy Recovery' + aedgSmMdOffHowToTipHash['HV13'] = 'HV13 Indirect Evaporative Cooling' + aedgSmMdOffHowToTipHash['HV14'] = 'HV14 Cooling and Heating Equipment Efficiencies' + aedgSmMdOffHowToTipHash['HV15'] = 'HV15 Ventilation Air' + aedgSmMdOffHowToTipHash['HV16'] = 'HV16 Economizer' + aedgSmMdOffHowToTipHash['HV17'] = 'HV17 Demand-Controlled Ventilation (DCV)' + aedgSmMdOffHowToTipHash['HV18'] = 'HV18 Carbon Dioxide (CO2 ) Sensors' + aedgSmMdOffHowToTipHash['HV19'] = 'HV19 Exhaust Air Systems' + aedgSmMdOffHowToTipHash['HV20'] = 'HV20 Ductwork Design and Construction' + aedgSmMdOffHowToTipHash['HV21'] = 'HV21 Duct Insulation' + aedgSmMdOffHowToTipHash['HV22'] = 'HV22 Duct Sealing and Leakage Testing' + aedgSmMdOffHowToTipHash['HV23'] = 'HV23 Fan Motor Efficiencies' + aedgSmMdOffHowToTipHash['HV24'] = 'HV24 Thermal Zoning' + aedgSmMdOffHowToTipHash['HV25'] = 'HV25 System-Level Control Strategies' + aedgSmMdOffHowToTipHash['HV26'] = 'HV26 Testing, Adjusting, and Balancing' + aedgSmMdOffHowToTipHash['HV27'] = 'HV27 Commissioning (Cx)' + aedgSmMdOffHowToTipHash['HV28'] = 'HV28 Filters' + aedgSmMdOffHowToTipHash['HV29'] = 'HV29 Chilled-Water (CHW) System' + aedgSmMdOffHowToTipHash['HV30'] = 'HV30 Water Heating Systems' + aedgSmMdOffHowToTipHash['HV31'] = 'HV31 Relief versus Return Fans' + aedgSmMdOffHowToTipHash['HV32'] = 'HV32 Heating Sources' + aedgSmMdOffHowToTipHash['HV33'] = 'HV33 Noise Control' + aedgSmMdOffHowToTipHash['HV34'] = 'HV34 Proper Maintenance' + aedgSmMdOffHowToTipHash['HV35'] = 'HV35 Zone Temperature Control' + aedgSmMdOffHowToTipHash['HV36'] = 'HV36 Evaporative Condensers on Rooftop Units' + + # commissioning tips + aedgSmMdOffHowToTipHash['QA01'] = 'QA1 Selecting the Design and Construction Team' + aedgSmMdOffHowToTipHash['QA02'] = 'QA2 Selecting the QA Provider' + aedgSmMdOffHowToTipHash['QA03'] = 'QA3 Owner’s Project Requirements (OPR) and Basis of Design (BoD)' + aedgSmMdOffHowToTipHash['QA04'] = 'QA4 Design and Construction Schedule' + aedgSmMdOffHowToTipHash['QA05'] = 'QA5 Design Review' + aedgSmMdOffHowToTipHash['QA06'] = 'QA6 Defining QA at Pre-Bid' + aedgSmMdOffHowToTipHash['QA07'] = 'QA7 Verifying Building Envelope Construction' + aedgSmMdOffHowToTipHash['QA08'] = 'QA8 Verifying Lighting Construction' + aedgSmMdOffHowToTipHash['QA09'] = 'QA9 Verifying Electrical and HVAC Systems Construction' + aedgSmMdOffHowToTipHash['QA10'] = 'QA10 Performance Testing' + aedgSmMdOffHowToTipHash['QA11'] = 'QA11 Substantial Completion' + aedgSmMdOffHowToTipHash['QA12'] = 'QA12 Final Acceptance' + aedgSmMdOffHowToTipHash['QA13'] = 'QA13 Establish a Building Operation and Maintenance (O&M) Program' + aedgSmMdOffHowToTipHash['QA14'] = 'QA14 Monitor Post-Occupancy Performance' + + # natural ventilation tips + aedgSmMdOffHowToTipHash['NV01'] = 'NV1 Natural Ventilation and Naturally Conditioned Spaces' + + # renewable energy tips + aedgSmMdOffHowToTipHash['RE01'] = 'RE1 Photovoltaic (PV) Systems' + aedgSmMdOffHowToTipHash['RE02'] = 'RE2 Wind Turbine Power' + aedgSmMdOffHowToTipHash['RE03'] = 'RE3 Transpired Solar Collector' + aedgSmMdOffHowToTipHash['RE04'] = 'RE4 Power Purchase Agreements' + + result = aedgSmMdOffHowToTipHash + return result + end # end of OsLib_AedgMeasures.getSmMdOffTips +end # end of module OsLib_AedgMeasures diff --git a/lib/measures/vr_fwith_doas/resources/OsLib_Constructions.rb b/lib/measures/vr_fwith_doas/resources/OsLib_Constructions.rb new file mode 100644 index 0000000..7b11ac3 --- /dev/null +++ b/lib/measures/vr_fwith_doas/resources/OsLib_Constructions.rb @@ -0,0 +1,221 @@ +# frozen_string_literal: true + +module OsLib_Constructions + # infer insulation layer from a construction + def self.inferInsulationLayer(construction, minThermalResistance) + construction_layers = construction.layers + counter = 0 + max_resistance = 0 + thermal_resistance_array = [] + + # loop through construction layers and infer insulation layer/material + construction_layers.each do |construction_layer| + construction_thermal_resistance = construction_layer.to_OpaqueMaterial.get.thermalResistance + if !thermal_resistance_array.empty? + if construction_thermal_resistance > max_resistance + thermal_resistance_array = [construction_layer, counter, construction_thermal_resistance] + max_resistance = construction_thermal_resistance + end + else + thermal_resistance_array = [construction_layer, counter, construction_thermal_resistance] + end + counter += 1 + end + + # test against minimum + if max_resistance > minThermalResistance + minTestPass = true + else + minTestPass = false + end + + result = { + 'construction' => construction, + 'construction_layer' => thermal_resistance_array[0], + 'layer_index' => thermal_resistance_array[1], + 'construction_thermal_resistance' => thermal_resistance_array[2], + 'insulationFound' => minTestPass + } + + return result + end + + # change thermal resistance of opaque materials + def self.setMaterialThermalResistance(material, thermalResistance, options = {}) + # set defaults to use if user inputs not passed in + defaults = { + 'cloneMaterial' => true, # in future give user option to clone or change live material + 'name' => "#{material.name} - adj" + } + + # merge user inputs with defaults + options = defaults.merge(options) + + # clone input material + new_material = material.clone(material.model) + new_material = new_material.to_OpaqueMaterial.get + new_material.setName(options['name']) + + # edit insulation material + new_material_matt = new_material.to_Material + if !new_material_matt.empty? + starting_thickness = new_material_matt.get.thickness + target_thickness = starting_thickness * thermalResistance / material.to_OpaqueMaterial.get.thermalResistance + final_thickness = new_material_matt.get.setThickness(target_thickness) + end + new_material_massless = new_material.to_MasslessOpaqueMaterial + if !new_material_massless.empty? + final_thermal_resistance = new_material_massless.get.setThermalResistance(thermalResistance) + end + new_material_airgap = new_material.to_AirGap + if !new_material_airgap.empty? + final_thermal_resistance = new_material_airgap.get.setThermalResistance(thermalResistance) + end + + result = new_material + return result + end + + # add new material to outside of a construction + def self.addNewLayerToConstruction(construction, options = {}) + # set defaults to use if user inputs not passed in + defaults = { + 'cloneConstruction' => false, # in future give user option to clone or change live construction + 'layerIndex' => 0, # 0 will be outside. Measure writer should validate any non 0 layerIndex passed in. + 'name' => "#{construction.name} - new material", + 'roughness' => nil, + 'thickness' => nil, + 'conductivity' => nil, + 'density' => nil, + 'specificHeat' => nil, + 'thermalAbsorptance' => nil, + 'solarAbsorptance' => nil, + 'visibleAbsorptance' => nil + } + + # merge user inputs with defaults + options = defaults.merge(options) + + # TODO: - would be nice to grab surface properties from previous exposed material + + # make new material + exposedMaterialNew = OpenStudio::Model::StandardOpaqueMaterial.new(construction.model) + exposedMaterialNew.setName(options['name']) + + # set requested material properties + if !options['roughness'].nil? then exposedMaterialNew.setRoughness(options['roughness']) end + if !options['thickness'].nil? then exposedMaterialNew.setThickness(options['thickness']) end + if !options['conductivity'].nil? then exposedMaterialNew.setConductivity(options['conductivity']) end + if !options['density'].nil? then exposedMaterialNew.setDensity(options['density']) end + if !options['specificHeat'].nil? then exposedMaterialNew.setSpecificHeat(options['specificHeat']) end + if !options['thermalAbsorptance'].nil? then exposedMaterialNew.setThermalAbsorptance(options['thermalAbsorptance']) end + if !options['solarAbsorptance'].nil? then exposedMaterialNew.setSolarAbsorptance(options['solarAbsorptance']) end + if !options['visibleAbsorptance'].nil? then exposedMaterialNew.setVisibleAbsorptance(options['visibleAbsorptance']) end + + # add material to construction + construction.insertLayer(options['layerIndex'], exposedMaterialNew) + + result = exposedMaterialNew + return result + end + + # set material surface properties for specific layer in construction. this should work on OS:Material and OS:MasslessOpaqueMaterial + def self.setConstructionSurfaceProperties(construction, options = {}) + # set defaults to use if user inputs not passed in + defaults = { + 'cloneConstruction' => false, # in future give user option to clone or change live construction + 'nameConstruction' => "#{construction.name} - adj", # not currently used + 'cloneMaterial' => true, + 'roughness' => nil, + 'thermalAbsorptance' => nil, + 'solarAbsorptance' => nil, + 'visibleAbsorptance' => nil + } + + # merge user inputs with defaults + options = defaults.merge(options) + + exposedMaterial = construction.to_LayeredConstruction.get.getLayer(0) + if options['cloneMaterial'] + + # clone material + exposedMaterialNew = exposedMaterial.clone(construction.model).to_StandardOpaqueMaterial.get # to_StandardOpaqueMaterial is needed to access roughness, otherwise to_OpaqueMaterial would have been fine. + exposedMaterialNew.setName("#{exposedMaterial.name} - adj") + + # connect new material to original construction + construction.eraseLayer(0) + construction.insertLayer(0, exposedMaterialNew) + + else + exposedMaterialNew = exposedMaterial.to_StandardOpaqueMaterial.get # not being cloned but still want to rename + exposedMaterialNew.setName("#{exposedMaterial.name} - adj") + end + + # TODO: - need to test with MasslessOpaqueMaterial. Add test if doesn't return anything when use to_StandardOpaqueMaterial.get + + # set requested material properties + if !options['roughness'].nil? then exposedMaterialNew.setRoughness(options['roughness']) end + if !options['thermalAbsorptance'].nil? then exposedMaterialNew.setThermalAbsorptance(options['thermalAbsorptance']) end + if !options['solarAbsorptance'].nil? then exposedMaterialNew.setSolarAbsorptance(options['solarAbsorptance']) end + if !options['visibleAbsorptance'].nil? then exposedMaterialNew.setVisibleAbsorptance(options['visibleAbsorptance']) end + + result = { 'exposedMaterial' => exposedMaterial, 'exposedMaterialNew' => exposedMaterialNew } + return result + end # end of OsLib_Constructions.setMaterialSurfaceProperties + + # similar to setMaterialSurfaceProperties but I just pass a material in. Needed this to set material properties for interior walls and both sides of interior partitions. + def self.setMaterialSurfaceProperties(material, options = {}) + # set defaults to use if user inputs not passed in + defaults = { + 'cloneMaterial' => true, + 'roughness' => nil, + 'thermalAbsorptance' => nil, + 'solarAbsorptance' => nil, + 'visibleAbsorptance' => nil + } + + # merge user inputs with defaults + options = defaults.merge(options) + + if options['cloneMaterial'] + # clone material + materialNew = exposedMaterial.clone(construction.model).get + materialNew.setName("#{materialNew.name} - adj") + else + materialNew = material # not being cloned + materialNew.setName("#{materialNew.name} - adj") + end + + # to_StandardOpaqueMaterial is needed to access roughness, otherwise to_OpaqueMaterial would have been fine. + if !materialNew.to_StandardOpaqueMaterial.empty? + materialNew = materialNew.to_StandardOpaqueMaterial.get + elsif !materialNew.to_MasslessOpaqueMaterial.empty? + materialNew = materialNew.to_MasslessOpaqueMaterial.get + end + + # set requested material properties + if !options['roughness'].nil? then materialNew.setRoughness(options['roughness']) end + if !options['thermalAbsorptance'].nil? then materialNew.setThermalAbsorptance(options['thermalAbsorptance']) end + if !options['solarAbsorptance'].nil? then materialNew.setSolarAbsorptance(options['solarAbsorptance']) end + if !options['visibleAbsorptance'].nil? then materialNew.setVisibleAbsorptance(options['visibleAbsorptance']) end + + result = { 'material' => material, 'materialNew' => materialNew } + return result + end # end of OsLib_Constructions.setMaterialSurfaceProperties + + # sri of exposed surface of a construction (calculation from K-12 AEDG, derived from ASTM E1980 assuming medium wind speed) + def self.getConstructionSRI(construction) + exposedMaterial = construction.to_LayeredConstruction.get.getLayer(0) + solarAbsorptance = exposedMaterial.to_OpaqueMaterial.get.solarAbsorptance + thermalEmissivity = exposedMaterial.to_OpaqueMaterial.get.thermalAbsorptance + # lines below just for testing + # solarAbsorptance = 1 - 0.65 + # thermalEmissivity = 0.86 + + x = (20.797 * solarAbsorptance - 0.603 * thermalEmissivity) / (9.5205 * thermalEmissivity + 12.0) + sri = 123.97 - 141.35 * x + 9.6555 * x * x + + result = sri + return result + end # end of OsLib_Constructions.getConstructionSRI +end diff --git a/lib/measures/vr_fwith_doas/resources/OsLib_Geometry.rb b/lib/measures/vr_fwith_doas/resources/OsLib_Geometry.rb new file mode 100644 index 0000000..83e43a9 --- /dev/null +++ b/lib/measures/vr_fwith_doas/resources/OsLib_Geometry.rb @@ -0,0 +1,41 @@ +# frozen_string_literal: true + +module OsLib_Geometry + # lower z value of vertices with starting value above x to new value of y + def self.lowerSurfaceZvalue(surfaceArray, zValueTarget) + counter = 0 + + # loop over all surfaces + surfaceArray.each do |surface| + # create a new set of vertices + newVertices = OpenStudio::Point3dVector.new + + # get the existing vertices for this interior partition + vertices = surface.vertices + flag = false + vertices.each do |vertex| + # initialize new vertex to old vertex + x = vertex.x + y = vertex.y + z = vertex.z + + # if this z vertex is not on the z = 0 plane + if z > zValueTarget + z = zValueTarget + flag = true + end + + # add point to new vertices + newVertices << OpenStudio::Point3d.new(x, y, z) + end + + # set vertices to new vertices + surface.setVertices(newVertices) # todo check if this was made, and issue warning if it was not. Could happen if resulting surface not planer. + + if flag then counter += 1 end + end # end of surfaceArray.each do + + result = counter + return result + end +end diff --git a/lib/measures/vr_fwith_doas/resources/OsLib_HVAC.rb b/lib/measures/vr_fwith_doas/resources/OsLib_HVAC.rb new file mode 100644 index 0000000..4ef9b7f --- /dev/null +++ b/lib/measures/vr_fwith_doas/resources/OsLib_HVAC.rb @@ -0,0 +1,1516 @@ +# frozen_string_literal: true + +module OsLib_HVAC + # do something + def self.doSomething(input) + # do something + output = input + + result = output + return result + end # end of def + + # validate and make plenum zones + def self.validateAndAddPlenumZonesToSystem(model, runner, options = {}) + # set defaults to use if user inputs not passed in + defaults = { + 'zonesPlenum' => nil, + 'zonesPrimary' => nil, + 'type' => 'ceilingReturn' + } + + # merge user inputs with defaults + options = defaults.merge(options) + + # array of valid ceiling plenums + zoneSurfaceHash = {} + zonePlenumHash = {} + + if options['zonesPlenum'].nil? + runner.registerWarning('No plenum zones were passed in, validateAndAddPlenumZonesToSystem will not alter the model.') + else + options['zonesPlenum'].each do |zone| + # get spaces in zone + spaces = zone.spaces + # get adjacent spaces + spaces.each do |space| + # get surfaces + surfaces = space.surfaces + # loop through surfaces looking for floors with surface boundary condition, grab zone that surface's parent space is in. + surfaces.each do |surface| + if (surface.outsideBoundaryCondition == 'Surface') && (surface.surfaceType == 'Floor') + next unless surface.adjacentSurface.is_initialized + adjacentSurface = surface.adjacentSurface.get + next unless adjacentSurface.space.is_initialized + adjacentSurfaceSpace = adjacentSurface.space.get + next unless adjacentSurfaceSpace.thermalZone.is_initialized + adjacentSurfaceSpaceZone = adjacentSurfaceSpace.thermalZone.get + if options['zonesPrimary'].include? adjacentSurfaceSpaceZone + if zoneSurfaceHash[adjacentSurfaceSpaceZone].nil? || (surface.grossArea > zoneSurfaceHash[adjacentSurfaceSpaceZone]) + adjacentSurfaceSpaceZone.setReturnPlenum(zone) + zoneSurfaceHash[adjacentSurfaceSpaceZone] = surface.grossArea + zonePlenumHash[adjacentSurfaceSpaceZone] = zone + end + end + end + end # end of surfaces.each do + end # end of spaces.each do + end # end of zonesPlenum.each do + end # end of zonesPlenum == nil + + # report out results of zone-plenum hash + zonePlenumHash.each do |zone, plenum| + runner.registerInfo("#{plenum.name} has been set as a return air plenum for #{zone.name}.") + end + + # pass back zone-plenum hash + result = zonePlenumHash + return result + end # end of def + + def self.sortZones(model, runner, options = {}, space_type_to_edits_hash = {}) + # set defaults to use if user inputs not passed in + defaults = { 'standardBuildingTypeTest' => nil, # not used for now + 'secondarySpaceTypeTest' => nil, + 'ceilingReturnPlenumSpaceType' => nil } + + # merge user inputs with defaults + options = defaults.merge(options) + + # set up zone type arrays + zonesPrimary = [] + zonesSecondary = [] + zonesPlenum = [] + zonesUnconditioned = [] + + # get thermal zones + zones = model.getThermalZones + zones.each do |zone| + # assign appropriate zones to zonesPlenum or zonesUnconditioned (those that don't have thermostats or zone HVAC equipment) + # if not conditioned then add to zonesPlenum or zonesUnconditioned + unless zone.thermostatSetpointDualSetpoint.is_initialized || !zone.equipment.empty? + # determine if zone is a plenum zone or general unconditioned zone + # assume it is a plenum if it has at least one plenum space + zone.spaces.each do |space| + # if a zone has already been assigned as a plenum, skip + next if zonesPlenum.include? zone + # if zone not assigned as a plenum, get space type if it exists + # compare to plenum space type if it has been assigned + if space.spaceType.is_initialized && (options['ceilingReturnPlenumSpaceType'].nil? == false) + spaceType = space.spaceType.get + if spaceType == options['ceilingReturnPlenumSpaceType'] + zonesPlenum << zone # zone has a plenum space; assign it as a plenum + end + end + end + # if zone not assigned as a plenum, assign it as unconditioned + unless zonesPlenum.include? zone + zonesUnconditioned << zone + end + end + end + # zone is conditioned. check if its space type is secondary or primary + # runner.registerInfo("space type to edit hash is #{space_type_to_edits_hash}") + spaces = model.getSpaces + spaces.each do |space| + next unless space.spaceType.is_initialized + spaceType = space.spaceType.get + # runner.registerInfo("space type is #{spaceType}") + if space_type_to_edits_hash[spaceType] == true + zonesPrimary << space.thermalZone.get + # runner.registerInfo("#{space.thermalZone.get} is a primary zone") + end + end # end of spaces each do + + # if zone is conditioned and is of space type true, assign it to primary zones + zonesSorted = { 'zonesPrimary' => zonesPrimary, + 'zonesSecondary' => zonesSecondary, + 'zonesPlenum' => zonesPlenum, + 'zonesUnconditioned' => zonesUnconditioned } + # pass back zonesSorted hash + result = zonesSorted + return result + end # end of def + + def self.reportConditions(model, runner, condition) + airloops = model.getAirLoopHVACs + plantLoops = model.getPlantLoops + zones = model.getThermalZones + + # count up zone equipment (not counting zone exhaust fans) + zoneHasEquip = false + zonesWithEquipCounter = 0 + + zones.each do |zone| + if !zone.equipment.empty? + zone.equipment.each do |equip| + unless equip.to_FanZoneExhaust.is_initialized + zonesWithEquipCounter += 1 + break + end + end + end + end + + if condition == 'initial' + runner.registerInitialCondition("The building started with #{airloops.size} air loops and #{plantLoops.size} plant loops. #{zonesWithEquipCounter} zones were conditioned with zone equipment.") + elsif condition == 'final' + runner.registerFinalCondition("The building finished with #{airloops.size} air loops and #{plantLoops.size} plant loops. #{zonesWithEquipCounter} zones are conditioned with zone equipment.") + end + end # end of def + + def self.removeEquipment(model, runner, options) + airloops = model.getAirLoopHVACs + plantLoops = model.getPlantLoops + zones = model.getThermalZones + + # remove all zone equipment except zone exhaust fans + zones.each do |zone| + # runner.registerInfo("primary zones values are #{value.name}") + if options['zonesPrimary'].include? zone + zone.equipment.each do |equip| + if equip.to_FanZoneExhaust.is_initialized # or (equip.to_ZoneHVACUnitHeater.is_initialized and zone.get.equipment.size == 1) + else + equip.remove + end + end + end + end + + # remove an air loop if it's empty + airloops.each do |air_loop| + air_loop.thermalZones.each do |airZone| + if options['zonesPrimary'].include? airZone + air_loop.removeBranchForZone(airZone) + end + end + if air_loop.thermalZones.empty? + air_loop.remove + end + end + + # remove plant loops + plantLoops.each do |plantLoop| + # get the demand components and see if water use connection, then save it + # notify user with info statement if supply side of plant loop had heat exchanger for refrigeration + usedForSWHOrRefrigeration = false + usedForZoneHCCoils = false + plantLoop.demandComponents.each do |comp| # AP code to check your comments above + runner.registerInfo("plant loops component is #{comp.name}") + if comp.to_WaterUseConnections.is_initialized || comp.to_CoilWaterHeatingDesuperheater.is_initialized + usedForSWHOrRefrigeration = true + runner.registerWarning("#{plantLoop.name} is used for SWH or refrigeration. Loop will not be deleted.") + elsif comp.name.to_s.include?('Coil') && (comp.name.to_s != 'Coil Heating Water 1') && (comp.name.to_s != 'Coil Cooling Water 1') # to_CoilWaterHeatingDesuperheater.is_initialized or comp.name.to_s.include? "coil" + runner.registerWarning("#{plantLoop.name} has coils used by Zone HVAC components. Loop will not be deleted.") + usedForZoneHCCoils = true + end + end + # runner.registerInfo("Used for ZoneHCCoils Value is #{usedForZoneHCCoils}") + # runner.registerInfo("Used for SWH or refrigeration is #{usedForSWHOrRefrigeration}") + if usedForSWHOrRefrigeration == false # and usedForZoneHCCoils == false # <-- Sang Hoon Lee: "and usedForZoneHCCoils == false" Treated as comment for BRICR Medium office to remove Coil:Heating:Water + plantLoop.remove + runner.registerInfo("Plant Loop #{plantLoop.name} is removed") + end + end # end of plantloop components + end # end of def + + def self.assignHVACSchedules(model, runner, options = {}) + require "#{File.dirname(__FILE__)}/OsLib_Schedules" + + schedulesHVAC = {} + airloops = model.getAirLoopHVACs + + # find airloop with most primary spaces + max_primary_spaces = 0 + representative_airloop = false + building_HVAC_schedule = false + building_ventilation_schedule = false + unless options['remake_schedules'] + # if remake schedules not selected, get relevant schedules from model if they exist + airloops.each do |air_loop| + primary_spaces = 0 + air_loop.thermalZones.each do |thermal_zone| + thermal_zone.spaces.each do |space| + if space.spaceType.is_initialized + if space.spaceType.get.name.is_initialized + if space.spaceType.get.name.get.include? options['primarySpaceType'] + primary_spaces += 1 + end + end + end + end + end + if primary_spaces > max_primary_spaces + max_primary_spaces = primary_spaces + representative_airloop = air_loop + end + end + end + if representative_airloop + building_HVAC_schedule = representative_airloop.availabilitySchedule + if representative_airloop.airLoopHVACOutdoorAirSystem.is_initialized + building_ventilation_schedule_optional = representative_airloop.airLoopHVACOutdoorAirSystem.get.getControllerOutdoorAir.maximumFractionofOutdoorAirSchedule + if building_ventilation_schedule_optional.is_initialized + building_ventilation_schedule = building_ventilation_schedule.get + end + end + end + # build new airloop schedules if existing model doesn't have them + if options['primarySpaceType'] == 'Classroom' + # ventilation schedule + unless building_ventilation_schedule + runner.registerInfo('Baseline does not have minimum OA ventilation schedule. A new K-12 Ventilation schedule is created') + ruleset_name = 'New K-12 Ventilation Schedule' + winter_design_day = [[24, 1]] + summer_design_day = [[24, 1]] + default_day = ['Weekday', [6, 0], [18, 1], [24, 0]] + rules = [] + rules << ['Weekend', '1/1-12/31', 'Sat/Sun', [24, 0]] + rules << ['Summer Weekday', '7/1-8/31', 'Mon/Tue/Wed/Thu/Fri', [8, 0], [13, 1], [24, 0]] + options_ventilation = { 'name' => ruleset_name, + 'winter_design_day' => winter_design_day, + 'summer_design_day' => summer_design_day, + 'default_day' => default_day, + 'rules' => rules } + building_ventilation_schedule = OsLib_Schedules.createComplexSchedule(model, options_ventilation) + end + # HVAC availability schedule + unless building_HVAC_schedule + runner.registerInfo('Baseline does not have HVAC availability schedule. A new K-12 HVAC availability schedule is created') + ruleset_name = 'New K-12 HVAC Availability Schedule' + winter_design_day = [[24, 1]] + summer_design_day = [[24, 1]] + default_day = ['Weekday', [6, 0], [18, 1], [24, 0]] + rules = [] + rules << ['Weekend', '1/1-12/31', 'Sat/Sun', [24, 0]] + rules << ['Summer Weekday', '7/1-8/31', 'Mon/Tue/Wed/Thu/Fri', [8, 0], [13, 1], [24, 0]] + options_hvac = { 'name' => ruleset_name, + 'winter_design_day' => winter_design_day, + 'summer_design_day' => summer_design_day, + 'default_day' => default_day, + 'rules' => rules } + building_HVAC_schedule = OsLib_Schedules.createComplexSchedule(model, options_hvac) + end + elsif options['primarySpaceType'] == 'Office' # xf - leave as is + # ventilation schedule + unless building_ventilation_schedule + runner.registerInfo('Baseline does not have minimum OA ventilation schedule. A new Office Ventilation schedule is created.') + ruleset_name = 'New Office Ventilation Schedule' + winter_design_day = [[24, 1]] # ML These are not always on in PNNL model + summer_design_day = [[24, 1]] # ML These are not always on in PNNL model + default_day = ['Weekday', [7, 0], [22, 1], [24, 0]] # ML PNNL has a one hour ventilation offset + rules = [] + rules << ['Saturday', '1/1-12/31', 'Sat', [7, 0], [18, 1], [24, 0]] # ML PNNL has a one hour ventilation offset + rules << ['Sunday', '1/1-12/31', 'Sun', [24, 0]] + options_ventilation = { 'name' => ruleset_name, + 'winter_design_day' => winter_design_day, + 'summer_design_day' => summer_design_day, + 'default_day' => default_day, + 'rules' => rules } + building_ventilation_schedule = OsLib_Schedules.createComplexSchedule(model, options_ventilation) + end + # HVAC availability schedule + unless building_HVAC_schedule + runner.registerInfo('Baseline does not have HVAC availability schedule. A new office HVAC availability schedule is created') + ruleset_name = 'New Office HVAC Availability Schedule' + winter_design_day = [[24, 1]] # ML These are not always on in PNNL model + summer_design_day = [[24, 1]] # ML These are not always on in PNNL model + default_day = ['Weekday', [6, 0], [22, 1], [24, 0]] # ML PNNL has a one hour ventilation offset + rules = [] + rules << ['Saturday', '1/1-12/31', 'Sat', [6, 0], [18, 1], [24, 0]] # ML PNNL has a one hour ventilation offset + rules << ['Sunday', '1/1-12/31', 'Sun', [24, 0]] + options_hvac = { 'name' => ruleset_name, + 'winter_design_day' => winter_design_day, + 'summer_design_day' => summer_design_day, + 'default_day' => default_day, + 'rules' => rules } + building_HVAC_schedule = OsLib_Schedules.createComplexSchedule(model, options_hvac) + end + # special loops for radiant system (different temperature setpoints) + if options['allHVAC']['zone'] == 'Radiant' + # create hot water schedule for radiant heating loop + schedulesHVAC['radiant_hot_water'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New HW-Radiant-Loop-Temp-Schedule', + 'default_day' => ['All Days', [24, 45.0]]) + # create hot water schedule for radiant cooling loop + schedulesHVAC['radiant_chilled_water'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New CW-Radiant-Loop-Temp-Schedule', + 'default_day' => ['All Days', [24, 15.0]]) + # create mean radiant heating and cooling setpoint schedules + # ML ideally, should grab schedules tied to zone thermostat and make modified versions that follow the setback pattern + # for now, create new ones that match the recommended HVAC schedule + # mean radiant heating setpoint schedule (PNNL values) + ruleset_name = 'New Office Mean Radiant Heating Setpoint Schedule' + winter_design_day = [[24, 18.8]] + summer_design_day = [[6, 18.3], [22, 18.8], [24, 18.3]] + default_day = ['Weekday', [6, 18.3], [22, 18.8], [24, 18.3]] + rules = [] + rules << ['Saturday', '1/1-12/31', 'Sat', [6, 18.3], [18, 18.8], [24, 18.3]] + rules << ['Sunday', '1/1-12/31', 'Sun', [24, 18.3]] + options_radiant_heating = { 'name' => ruleset_name, + 'winter_design_day' => winter_design_day, + 'summer_design_day' => summer_design_day, + 'default_day' => default_day, + 'rules' => rules } + mean_radiant_heating_schedule = OsLib_Schedules.createComplexSchedule(model, options_radiant_heating) + schedulesHVAC['mean_radiant_heating'] = mean_radiant_heating_schedule + # mean radiant cooling setpoint schedule (PNNL values) + ruleset_name = 'New Office Mean Radiant Cooling Setpoint Schedule' + winter_design_day = [[6, 26.7], [22, 24.0], [24, 26.7]] + summer_design_day = [[24, 24.0]] + default_day = ['Weekday', [6, 26.7], [22, 24.0], [24, 26.7]] + rules = [] + rules << ['Saturday', '1/1-12/31', 'Sat', [6, 26.7], [18, 24.0], [24, 26.7]] + rules << ['Sunday', '1/1-12/31', 'Sun', [24, 26.7]] + options_radiant_cooling = { 'name' => ruleset_name, + 'winter_design_day' => winter_design_day, + 'summer_design_day' => summer_design_day, + 'default_day' => default_day, + 'rules' => rules } + mean_radiant_cooling_schedule = OsLib_Schedules.createComplexSchedule(model, options_radiant_cooling) + schedulesHVAC['mean_radiant_cooling'] = mean_radiant_cooling_schedule + end + end + # SAT schedule + if options['allHVAC']['primary']['doas'] + # primary airloop is DOAS + schedulesHVAC['primary_sat'] = sch_ruleset_DOAS_setpoint = OsLib_Schedules.createComplexSchedule(model, 'name' => 'DOAS Temperature Setpoint Schedule', + 'default_day' => ['All Days', [24, 21.111]]) + else + # primary airloop is multizone VAV that cools + schedulesHVAC['primary_sat'] = sch_ruleset_DOAS_setpoint = OsLib_Schedules.createComplexSchedule(model, 'name' => 'Cold Deck Temperature Setpoint Schedule', + 'default_day' => ['All Days', [24, 12.8]]) + end + schedulesHVAC['ventilation'] = building_ventilation_schedule + schedulesHVAC['hvac'] = building_HVAC_schedule + # build new plant schedules as needed + zoneHVACHotWaterPlant = ['FanCoil', 'DualDuct', 'Baseboard'] # dual duct has fan coil and baseboard + zoneHVACChilledWaterPlant = ['FanCoil', 'DualDuct'] # dual duct has fan coil + # hot water + if (options['allHVAC']['primary']['heat'] == 'Water') || (options['allHVAC']['secondary']['heat'] == 'Water') || zoneHVACHotWaterPlant.include?(options['allHVAC']['zone']) + schedulesHVAC['hot_water'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'HW-Loop-Temp-Schedule', + 'default_day' => ['All Days', [24, 67.0]]) + end + # chilled water + if (options['allHVAC']['primary']['cool'] == 'Water') || (options['allHVAC']['secondary']['cool'] == 'Water') || zoneHVACChilledWaterPlant.include?(options['allHVAC']['zone']) + schedulesHVAC['chilled_water'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'CW-Loop-Temp-Schedule', + 'default_day' => ['All Days', [24, 6.7]]) + end + # heat pump condenser loop schedules + if options['allHVAC']['zone'] == 'GSHP' + # there will be a heat pump condenser loop + # loop setpoint schedule + schedulesHVAC['hp_loop'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New HP-Loop-Temp-Schedule', + 'default_day' => ['All Days', [24, 21]]) + # cooling component schedule (#ML won't need this if a ground loop is actually modeled) + schedulesHVAC['hp_loop_cooling'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New HP-Loop-Clg-Temp-Schedule', + 'default_day' => ['All Days', [24, 21]]) + # heating component schedule + schedulesHVAC['hp_loop_heating'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New HP-Loop-Htg-Temp-Schedule', + 'default_day' => ['All Days', [24, 5]]) + end + if (options['allHVAC']['zone'] == 'WSHP') || (options['allHVAC']['zone'] == 'VRF') + # there will be a heat pump condenser loop + # loop setpoint schedule + schedulesHVAC['hp_loop'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New HP-Loop-Temp-Schedule', + 'default_day' => ['All Days', [24, 30]]) # PNNL + # cooling component schedule (#ML won't need this if a ground loop is actually modeled) + schedulesHVAC['hp_loop_cooling'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New HP-Loop-Clg-Temp-Schedule', + 'default_day' => ['All Days', [24, 30]]) # PNNL + # heating component schedule + schedulesHVAC['hp_loop_heating'] = OsLib_Schedules.createComplexSchedule(model, 'name' => 'New HP-Loop-Htg-Temp-Schedule', + 'default_day' => ['All Days', [24, 20]]) # PNNL + end + + # pass back schedulesHVAC hash + result = schedulesHVAC + return result + end # end of def + + def self.createHotWaterPlant(model, runner, hot_water_setpoint_schedule, loop_type, parameters) + hot_water_plant = OpenStudio::Model::PlantLoop.new(model) + hot_water_plant.setName("New #{loop_type} Loop") + hot_water_plant.setMaximumLoopTemperature(100) + hot_water_plant.setMinimumLoopTemperature(10) + loop_sizing = hot_water_plant.sizingPlant + loop_sizing.setLoopType('Heating') + if loop_type == 'Hot Water' + loop_sizing.setDesignLoopExitTemperature(82) + elsif loop_type == 'Radiant Hot Water' + loop_sizing.setDesignLoopExitTemperature(60) # ML follows convention of sizing temp being larger than supplu temp + end + loop_sizing.setLoopDesignTemperatureDifference(11) + # create a pump + pump = OpenStudio::Model::PumpVariableSpeed.new(model) + pump.setRatedPumpHead(119563) # Pa + pump.setMotorEfficiency(0.9) + pump.setCoefficient1ofthePartLoadPerformanceCurve(0) + pump.setCoefficient2ofthePartLoadPerformanceCurve(0.0216) + pump.setCoefficient3ofthePartLoadPerformanceCurve(-0.0325) + pump.setCoefficient4ofthePartLoadPerformanceCurve(1.0095) + # create a boiler + boiler = OpenStudio::Model::BoilerHotWater.new(model) + boiler.setNominalThermalEfficiency(0.9) + # create a scheduled setpoint manager + setpoint_manager_scheduled = OpenStudio::Model::SetpointManagerScheduled.new(model, hot_water_setpoint_schedule) + # create a supply bypass pipe + pipe_supply_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a supply outlet pipe + pipe_supply_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand bypass pipe + pipe_demand_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand inlet pipe + pipe_demand_inlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand outlet pipe + pipe_demand_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # connect components to plant loop + # supply side components + hot_water_plant.addSupplyBranchForComponent(boiler) + hot_water_plant.addSupplyBranchForComponent(pipe_supply_bypass) + pump.addToNode(hot_water_plant.supplyInletNode) + pipe_supply_outlet.addToNode(hot_water_plant.supplyOutletNode) + setpoint_manager_scheduled.addToNode(hot_water_plant.supplyOutletNode) + # demand side components (water coils are added as they are added to airloops and zoneHVAC) + hot_water_plant.addDemandBranchForComponent(pipe_demand_bypass) + pipe_demand_inlet.addToNode(hot_water_plant.demandInletNode) + pipe_demand_outlet.addToNode(hot_water_plant.demandOutletNode) + + # pass back hot water plant + result = hot_water_plant + return result + end # end of def + + def self.createChilledWaterPlant(model, runner, chilled_water_setpoint_schedule, loop_type, chillerType) + # chilled water plant + chilled_water_plant = OpenStudio::Model::PlantLoop.new(model) + chilled_water_plant.setName("New #{loop_type} Loop") + chilled_water_plant.setMaximumLoopTemperature(98) + chilled_water_plant.setMinimumLoopTemperature(1) + loop_sizing = chilled_water_plant.sizingPlant + loop_sizing.setLoopType('Cooling') + if loop_type == 'Chilled Water' + loop_sizing.setDesignLoopExitTemperature(6.7) + elsif loop_type == 'Radiant Chilled Water' + loop_sizing.setDesignLoopExitTemperature(15) + end + loop_sizing.setLoopDesignTemperatureDifference(6.7) + # create a pump + pump = OpenStudio::Model::PumpVariableSpeed.new(model) + pump.setRatedPumpHead(149453) # Pa + pump.setMotorEfficiency(0.9) + pump.setCoefficient1ofthePartLoadPerformanceCurve(0) + pump.setCoefficient2ofthePartLoadPerformanceCurve(0.0216) + pump.setCoefficient3ofthePartLoadPerformanceCurve(-0.0325) + pump.setCoefficient4ofthePartLoadPerformanceCurve(1.0095) + # create a chiller + if chillerType == 'WaterCooled' + # create clgCapFuncTempCurve + clgCapFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgCapFuncTempCurve.setCoefficient1Constant(1.07E+00) + clgCapFuncTempCurve.setCoefficient2x(4.29E-02) + clgCapFuncTempCurve.setCoefficient3xPOW2(4.17E-04) + clgCapFuncTempCurve.setCoefficient4y(-8.10E-03) + clgCapFuncTempCurve.setCoefficient5yPOW2(-4.02E-05) + clgCapFuncTempCurve.setCoefficient6xTIMESY(-3.86E-04) + clgCapFuncTempCurve.setMinimumValueofx(0) + clgCapFuncTempCurve.setMaximumValueofx(20) + clgCapFuncTempCurve.setMinimumValueofy(0) + clgCapFuncTempCurve.setMaximumValueofy(50) + # create eirFuncTempCurve + eirFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + eirFuncTempCurve.setCoefficient1Constant(4.68E-01) + eirFuncTempCurve.setCoefficient2x(-1.38E-02) + eirFuncTempCurve.setCoefficient3xPOW2(6.98E-04) + eirFuncTempCurve.setCoefficient4y(1.09E-02) + eirFuncTempCurve.setCoefficient5yPOW2(4.62E-04) + eirFuncTempCurve.setCoefficient6xTIMESY(-6.82E-04) + eirFuncTempCurve.setMinimumValueofx(0) + eirFuncTempCurve.setMaximumValueofx(20) + eirFuncTempCurve.setMinimumValueofy(0) + eirFuncTempCurve.setMaximumValueofy(50) + # create eirFuncPlrCurve + eirFuncPlrCurve = OpenStudio::Model::CurveQuadratic.new(model) + eirFuncPlrCurve.setCoefficient1Constant(1.41E-01) + eirFuncPlrCurve.setCoefficient2x(6.55E-01) + eirFuncPlrCurve.setCoefficient3xPOW2(2.03E-01) + eirFuncPlrCurve.setMinimumValueofx(0) + eirFuncPlrCurve.setMaximumValueofx(1.2) + # construct chiller + chiller = OpenStudio::Model::ChillerElectricEIR.new(model, clgCapFuncTempCurve, eirFuncTempCurve, eirFuncPlrCurve) + chiller.setReferenceCOP(6.1) + chiller.setCondenserType('WaterCooled') + chiller.setChillerFlowMode('ConstantFlow') + elsif chillerType == 'AirCooled' + # create clgCapFuncTempCurve + clgCapFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgCapFuncTempCurve.setCoefficient1Constant(1.05E+00) + clgCapFuncTempCurve.setCoefficient2x(3.36E-02) + clgCapFuncTempCurve.setCoefficient3xPOW2(2.15E-04) + clgCapFuncTempCurve.setCoefficient4y(-5.18E-03) + clgCapFuncTempCurve.setCoefficient5yPOW2(-4.42E-05) + clgCapFuncTempCurve.setCoefficient6xTIMESY(-2.15E-04) + clgCapFuncTempCurve.setMinimumValueofx(0) + clgCapFuncTempCurve.setMaximumValueofx(20) + clgCapFuncTempCurve.setMinimumValueofy(0) + clgCapFuncTempCurve.setMaximumValueofy(50) + # create eirFuncTempCurve + eirFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + eirFuncTempCurve.setCoefficient1Constant(5.83E-01) + eirFuncTempCurve.setCoefficient2x(-4.04E-03) + eirFuncTempCurve.setCoefficient3xPOW2(4.68E-04) + eirFuncTempCurve.setCoefficient4y(-2.24E-04) + eirFuncTempCurve.setCoefficient5yPOW2(4.81E-04) + eirFuncTempCurve.setCoefficient6xTIMESY(-6.82E-04) + eirFuncTempCurve.setMinimumValueofx(0) + eirFuncTempCurve.setMaximumValueofx(20) + eirFuncTempCurve.setMinimumValueofy(0) + eirFuncTempCurve.setMaximumValueofy(50) + # create eirFuncPlrCurve + eirFuncPlrCurve = OpenStudio::Model::CurveQuadratic.new(model) + eirFuncPlrCurve.setCoefficient1Constant(4.19E-02) + eirFuncPlrCurve.setCoefficient2x(6.25E-01) + eirFuncPlrCurve.setCoefficient3xPOW2(3.23E-01) + eirFuncPlrCurve.setMinimumValueofx(0) + eirFuncPlrCurve.setMaximumValueofx(1.2) + # construct chiller + chiller = OpenStudio::Model::ChillerElectricEIR.new(model, clgCapFuncTempCurve, eirFuncTempCurve, eirFuncPlrCurve) + chiller.setReferenceCOP(2.93) + chiller.setCondenserType('AirCooled') + chiller.setChillerFlowMode('ConstantFlow') + end + # create a scheduled setpoint manager + setpoint_manager_scheduled = OpenStudio::Model::SetpointManagerScheduled.new(model, chilled_water_setpoint_schedule) + # create a supply bypass pipe + pipe_supply_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a supply outlet pipe + pipe_supply_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand bypass pipe + pipe_demand_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand inlet pipe + pipe_demand_inlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand outlet pipe + pipe_demand_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # connect components to plant loop + # supply side components + chilled_water_plant.addSupplyBranchForComponent(chiller) + chilled_water_plant.addSupplyBranchForComponent(pipe_supply_bypass) + pump.addToNode(chilled_water_plant.supplyInletNode) + pipe_supply_outlet.addToNode(chilled_water_plant.supplyOutletNode) + setpoint_manager_scheduled.addToNode(chilled_water_plant.supplyOutletNode) + # demand side components (water coils are added as they are added to airloops and ZoneHVAC) + chilled_water_plant.addDemandBranchForComponent(pipe_demand_bypass) + pipe_demand_inlet.addToNode(chilled_water_plant.demandInletNode) + pipe_demand_outlet.addToNode(chilled_water_plant.demandOutletNode) + + # pass back chilled water plant + result = chilled_water_plant + return result + end # end of def + + def self.createCondenserLoop(model, runner, options, parameters) + condenserLoops = {} + # condLoopCoolingTemp_si = OpenStudio::convert(parameters["condLoopCoolingTemp"],"F","C").get + # condLoopHeatingTemp_si = OpenStudio::convert(parameters["condLoopHeatingTemp"],"F","C").get + # coolingTowerWB_si = OpenStudio::convert(parameters["coolingTowerWB"],"F","C").get + # boilerHWST_si = OpenStudio::convert(parameters["boilerHWST"],"F","C").get + + # check for water-cooled chillers + waterCooledChiller = false + model.getChillerElectricEIRs.each do |chiller| + next if waterCooledChiller == true + if chiller.condenserType == 'WaterCooled' + waterCooledChiller = true + end + end + # create condenser loop for water-cooled chillers + if waterCooledChiller + # create condenser loop for water-cooled chiller(s) + condenser_loop = OpenStudio::Model::PlantLoop.new(model) + condenser_loop.setName('New Condenser Loop') + condenser_loop.setMaximumLoopTemperature(80) + condenser_loop.setMinimumLoopTemperature(5) + loop_sizing = condenser_loop.sizingPlant + loop_sizing.setLoopType('Condenser') + loop_sizing.setDesignLoopExitTemperature(29.4) + loop_sizing.setLoopDesignTemperatureDifference(5.6) + # create a pump + pump = OpenStudio::Model::PumpVariableSpeed.new(model) + pump.setRatedPumpHead(134508) # Pa + pump.setMotorEfficiency(0.9) + pump.setCoefficient1ofthePartLoadPerformanceCurve(0) + pump.setCoefficient2ofthePartLoadPerformanceCurve(0.0216) + pump.setCoefficient3ofthePartLoadPerformanceCurve(-0.0325) + pump.setCoefficient4ofthePartLoadPerformanceCurve(1.0095) + # create a cooling tower + tower = OpenStudio::Model::CoolingTowerVariableSpeed.new(model) + # create a supply bypass pipe + pipe_supply_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a supply outlet pipe + pipe_supply_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand bypass pipe + pipe_demand_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand inlet pipe + pipe_demand_inlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand outlet pipe + pipe_demand_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a setpoint manager + setpoint_manager_follow_oa = OpenStudio::Model::SetpointManagerFollowOutdoorAirTemperature.new(model) + setpoint_manager_follow_oa.setOffsetTemperatureDifference(0) + setpoint_manager_follow_oa.setMaximumSetpointTemperature(80) + setpoint_manager_follow_oa.setMinimumSetpointTemperature(5) + # connect components to plant loop + # supply side components + condenser_loop.addSupplyBranchForComponent(tower) + condenser_loop.addSupplyBranchForComponent(pipe_supply_bypass) + pump.addToNode(condenser_loop.supplyInletNode) + pipe_supply_outlet.addToNode(condenser_loop.supplyOutletNode) + setpoint_manager_follow_oa.addToNode(condenser_loop.supplyOutletNode) + # demand side components + model.getChillerElectricEIRs.each do |chiller| + if chiller.condenserType == 'WaterCooled' # works only if chillers not already connected to condenser loop(s) + condenser_loop.addDemandBranchForComponent(chiller) + end + end + condenser_loop.addDemandBranchForComponent(pipe_demand_bypass) + pipe_demand_inlet.addToNode(condenser_loop.demandInletNode) + pipe_demand_outlet.addToNode(condenser_loop.demandOutletNode) + condenserLoops['condenser_loop'] = condenser_loop + end + if (options['zoneHVAC'] == 'WSHP') || (options['zoneHVAC'] == 'VRF') + # create condenser loop for heat pumps + condenser_loop = OpenStudio::Model::PlantLoop.new(model) + condenser_loop.setName('Heat Pump Loop') + condenser_loop.setMaximumLoopTemperature(80) + condenser_loop.setMinimumLoopTemperature(5) + loop_sizing = condenser_loop.sizingPlant + loop_sizing.setLoopType('Condenser') + + if options['zoneHVAC'] == 'GSHP' + loop_sizing.setDesignLoopExitTemperature(condLoopCoolingTemp_si) + loop_sizing.setLoopDesignTemperatureDifference(10 / 1.8) + elsif (options['zoneHVAC'] == 'WSHP') || (options['zoneHVAC'] == 'VRF') + loop_sizing.setDesignLoopExitTemperature(32.222) + loop_sizing.setLoopDesignTemperatureDifference(10 / 1.8) + end + # create a pump + pump = OpenStudio::Model::PumpVariableSpeed.new(model) + pump.setRatedPumpHead(134508) # Pa + pump.setMotorEfficiency(0.9) + pump.setCoefficient1ofthePartLoadPerformanceCurve(0) + pump.setCoefficient2ofthePartLoadPerformanceCurve(0.0216) + pump.setCoefficient3ofthePartLoadPerformanceCurve(-0.0325) + pump.setCoefficient4ofthePartLoadPerformanceCurve(1.0095) + # create a supply bypass pipe + pipe_supply_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a supply outlet pipe + pipe_supply_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand bypass pipe + pipe_demand_bypass = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand inlet pipe + pipe_demand_inlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create a demand outlet pipe + pipe_demand_outlet = OpenStudio::Model::PipeAdiabatic.new(model) + # create setpoint managers + setpoint_manager_scheduled_loop = OpenStudio::Model::SetpointManagerScheduled.new(model, options['loop_setpoint_schedule']) + setpoint_manager_scheduled_cooling = OpenStudio::Model::SetpointManagerScheduled.new(model, options['cooling_setpoint_schedule']) + setpoint_manager_scheduled_heating = OpenStudio::Model::SetpointManagerScheduled.new(model, options['heating_setpoint_schedule']) + # connect components to plant loop + # supply side components + condenser_loop.addSupplyBranchForComponent(pipe_supply_bypass) + pump.addToNode(condenser_loop.supplyInletNode) + pipe_supply_outlet.addToNode(condenser_loop.supplyOutletNode) + setpoint_manager_scheduled_loop.addToNode(condenser_loop.supplyOutletNode) + # demand side components + condenser_loop.addDemandBranchForComponent(pipe_demand_bypass) + pipe_demand_inlet.addToNode(condenser_loop.demandInletNode) + pipe_demand_outlet.addToNode(condenser_loop.demandOutletNode) + # add additional components according to specific system type + if options['zoneHVAC'] == 'GSHP' + # add district cooling and heating to supply side + district_cooling = OpenStudio::Model::DistrictCooling.new(model) + district_cooling.setNominalCapacity(1000000000000) # large number; no autosizing + condenser_loop.addSupplyBranchForComponent(district_cooling) + setpoint_manager_scheduled_cooling.addToNode(district_cooling.outletModelObject.get.to_Node.get) + district_heating = OpenStudio::Model::DistrictHeating.new(model) + district_heating.setNominalCapacity(1000000000000) # large number; no autosizing + district_heating.addToNode(district_cooling.outletModelObject.get.to_Node.get) + setpoint_manager_scheduled_heating.addToNode(district_heating.outletModelObject.get.to_Node.get) + # add heat pumps to demand side after they get created + elsif options['zoneHVAC'] == 'WSHP' + # add a boiler and cooling tower to supply side + # create a boiler + boiler = OpenStudio::Model::BoilerHotWater.new(model) + boiler.setNominalThermalEfficiency(parameters['boilerEff']) + boiler.setFuelType(parameters['boilerFuelType']) + boiler.setDesignWaterOutletTemperature(boilerHWST_si) + condenser_loop.addSupplyBranchForComponent(boiler) + setpoint_manager_scheduled_heating.addToNode(boiler.outletModelObject.get.to_Node.get) + # create a cooling tower + tower = OpenStudio::Model::CoolingTowerVariableSpeed.new(model) + tower.setDesignInletAirWetBulbTemperature(coolingTowerWB_si) + tower.setDesignApproachTemperature(parameters['coolingTowerApproach'] / 1.8) + tower.setDesignRangeTemperature(parameters['coolingTowerDeltaT'] / 1.8) + tower.addToNode(boiler.outletModelObject.get.to_Node.get) + setpoint_manager_scheduled_cooling.addToNode(tower.outletModelObject.get.to_Node.get) + elsif options['zoneHVAC'] == 'VRF' + # add a boiler and cooling tower to supply side + # create a boiler + boiler = OpenStudio::Model::BoilerHotWater.new(model) + boiler.setNominalThermalEfficiency(0.9) + boiler.setDesignWaterOutletTemperature(48) + condenser_loop.addSupplyBranchForComponent(boiler) + setpoint_manager_scheduled_heating.addToNode(boiler.outletModelObject.get.to_Node.get) + # create a cooling tower + tower = OpenStudio::Model::CoolingTowerVariableSpeed.new(model) + tower.setDesignInletAirWetBulbTemperature(20) + tower.setDesignApproachTemperature(3.89) + tower.setDesignRangeTemperature(5.56) + tower.addToNode(boiler.outletModelObject.get.to_Node.get) + setpoint_manager_scheduled_cooling.addToNode(tower.outletModelObject.get.to_Node.get) + end + condenserLoops['heat_pump_loop'] = condenser_loop + end + + # pass back condenser loop(s) + result = condenserLoops + return result + end # end of def + + def self.createPrimaryAirLoops(model, runner, options, parameters) + primary_airloops = [] + # create primary airloop for each story + assignedThermalZones = [] + model.getBuildingStorys.sort.each do |building_story| + # ML stories need to be reordered from the ground up + thermalZonesToAdd = [] + building_story.spaces.each do |space| + # make sure spaces are assigned to thermal zones + # otherwise might want to send a warning + if space.thermalZone.is_initialized + thermal_zone = space.thermalZone.get + # grab primary zones + if options['zonesPrimary'].include? thermal_zone + # make sure zone was not already assigned to another air loop + unless assignedThermalZones.include? thermal_zone + # make sure thermal zones are not duplicated (spaces can share thermal zones) + unless thermalZonesToAdd.include? thermal_zone + thermalZonesToAdd << thermal_zone + end + end + end + end + end + # make sure thermal zones don't get added to more than one air loop + assignedThermalZones << thermalZonesToAdd + + # create new air loop if story contains primary zones + unless thermalZonesToAdd.empty? + airloop_primary = OpenStudio::Model::AirLoopHVAC.new(model) + airloop_primary.setName("DOAS - #{building_story.name}") + # modify system sizing properties + sizing_system = airloop_primary.sizingSystem + # set central heating and cooling temperatures for sizing + sizing_system.setCentralCoolingDesignSupplyAirTemperature(12.8) + sizing_system.setCentralHeatingDesignSupplyAirTemperature(40) # ML OS default is 16.7 + # load specification + sizing_system.setSystemOutdoorAirMethod('VentilationRateProcedure') # ML OS default is ZoneSum + if options['primaryHVAC']['doas'] + sizing_system.setTypeofLoadtoSizeOn('VentilationRequirement') # DOAS + sizing_system.setAllOutdoorAirinCooling(true) # DOAS + sizing_system.setAllOutdoorAirinHeating(true) # DOAS + else + sizing_system.setTypeofLoadtoSizeOn('Sensible') # VAV + sizing_system.setAllOutdoorAirinCooling(false) # VAV + sizing_system.setAllOutdoorAirinHeating(false) # VAV + end + + air_loop_comps = [] + # set availability schedule + airloop_primary.setAvailabilitySchedule(options['hvac_schedule']) + # create air loop fan + if options['primaryHVAC']['fan'] == 'Variable' + # create variable speed fan and set system sizing accordingly + sizing_system.setMinimumSystemAirFlowRatio(0.3) # DCV + # variable speed fan + fan = OpenStudio::Model::FanVariableVolume.new(model, model.alwaysOnDiscreteSchedule) + fan.setFanEfficiency(0.69) + fan.setPressureRise(1125) # Pa + fan.autosizeMaximumFlowRate + fan.setFanPowerMinimumFlowFraction(0.6) + fan.setMotorEfficiency(0.9) + fan.setMotorInAirstreamFraction(1.0) + air_loop_comps << fan + else + sizing_system.setMinimumSystemAirFlowRatio(1.0) # No DCV + # constant speed fan + fan = OpenStudio::Model::FanConstantVolume.new(model, model.alwaysOnDiscreteSchedule) + fan.setFanEfficiency(0.6) + fan.setPressureRise(500) # Pa + fan.autosizeMaximumFlowRate + fan.setMotorEfficiency(0.9) + fan.setMotorInAirstreamFraction(1.0) + air_loop_comps << fan + end + # create heating coil + if options['primaryHVAC']['heat'] == 'Water' + # water coil + heating_coil = OpenStudio::Model::CoilHeatingWater.new(model, model.alwaysOnDiscreteSchedule) + air_loop_comps << heating_coil + else + # gas coil + heating_coil = OpenStudio::Model::CoilHeatingGas.new(model, model.alwaysOnDiscreteSchedule) + air_loop_comps << heating_coil + end + # create cooling coil + if options['primaryHVAC']['cool'] == 'Water' + # water coil + cooling_coil = OpenStudio::Model::CoilCoolingWater.new(model, model.alwaysOnDiscreteSchedule) + air_loop_comps << cooling_coil + elsif options['primaryHVAC']['cool'] == 'SingleDX' + # single speed DX coil + # create cooling coil + # create clgCapFuncTempCurve + clgCapFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgCapFuncTempCurve.setCoefficient1Constant(0.42415) + clgCapFuncTempCurve.setCoefficient2x(0.04426) + clgCapFuncTempCurve.setCoefficient3xPOW2(-0.00042) + clgCapFuncTempCurve.setCoefficient4y(0.00333) + clgCapFuncTempCurve.setCoefficient5yPOW2(-0.00008) + clgCapFuncTempCurve.setCoefficient6xTIMESY(-0.00021) + clgCapFuncTempCurve.setMinimumValueofx(17) + clgCapFuncTempCurve.setMaximumValueofx(22) + clgCapFuncTempCurve.setMinimumValueofy(13) + clgCapFuncTempCurve.setMaximumValueofy(46) + # create clgCapFuncFlowFracCurve + clgCapFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgCapFuncFlowFracCurve.setCoefficient1Constant(0.77136) + clgCapFuncFlowFracCurve.setCoefficient2x(0.34053) + clgCapFuncFlowFracCurve.setCoefficient3xPOW2(-0.11088) + clgCapFuncFlowFracCurve.setMinimumValueofx(0.75918) + clgCapFuncFlowFracCurve.setMaximumValueofx(1.13877) + # create clgEirFuncTempCurve + clgEirFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgEirFuncTempCurve.setCoefficient1Constant(1.23649) + clgEirFuncTempCurve.setCoefficient2x(-0.02431) + clgEirFuncTempCurve.setCoefficient3xPOW2(0.00057) + clgEirFuncTempCurve.setCoefficient4y(-0.01434) + clgEirFuncTempCurve.setCoefficient5yPOW2(0.00063) + clgEirFuncTempCurve.setCoefficient6xTIMESY(-0.00038) + clgEirFuncTempCurve.setMinimumValueofx(17) + clgEirFuncTempCurve.setMaximumValueofx(22) + clgEirFuncTempCurve.setMinimumValueofy(13) + clgEirFuncTempCurve.setMaximumValueofy(46) + # create clgEirFuncFlowFracCurve + clgEirFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgEirFuncFlowFracCurve.setCoefficient1Constant(1.20550) + clgEirFuncFlowFracCurve.setCoefficient2x(-0.32953) + clgEirFuncFlowFracCurve.setCoefficient3xPOW2(0.12308) + clgEirFuncFlowFracCurve.setMinimumValueofx(0.75918) + clgEirFuncFlowFracCurve.setMaximumValueofx(1.13877) + # create clgPlrCurve + clgPlrCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgPlrCurve.setCoefficient1Constant(0.77100) + clgPlrCurve.setCoefficient2x(0.22900) + clgPlrCurve.setCoefficient3xPOW2(0.0) + clgPlrCurve.setMinimumValueofx(0.0) + clgPlrCurve.setMaximumValueofx(1.0) + # cooling coil + cooling_coil = OpenStudio::Model::CoilCoolingDXSingleSpeed.new(model, + model.alwaysOnDiscreteSchedule, + clgCapFuncTempCurve, + clgCapFuncFlowFracCurve, + clgEirFuncTempCurve, + clgEirFuncFlowFracCurve, + clgPlrCurve) + cooling_coil.setRatedCOP(OpenStudio::OptionalDouble.new(parameters['doasDXEER'] / 3.412)) + air_loop_comps << cooling_coil + else + # two speed DX coil (PNNL curves) + # create cooling coil + # create clgCapFuncTempCurve + clgCapFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgCapFuncTempCurve.setCoefficient1Constant(1.39072) + clgCapFuncTempCurve.setCoefficient2x(-0.0529058) + clgCapFuncTempCurve.setCoefficient3xPOW2(0.0018423) + clgCapFuncTempCurve.setCoefficient4y(0.00058267) + clgCapFuncTempCurve.setCoefficient5yPOW2(-0.000186814) + clgCapFuncTempCurve.setCoefficient6xTIMESY(0.000265159) + clgCapFuncTempCurve.setMinimumValueofx(16.5556) + clgCapFuncTempCurve.setMaximumValueofx(22.1111) + clgCapFuncTempCurve.setMinimumValueofy(23.7778) + clgCapFuncTempCurve.setMaximumValueofy(47.66) + # create clgCapFuncFlowFracCurve + clgCapFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgCapFuncFlowFracCurve.setCoefficient1Constant(0.718954) + clgCapFuncFlowFracCurve.setCoefficient2x(0.435436) + clgCapFuncFlowFracCurve.setCoefficient3xPOW2(-0.154193) + clgCapFuncFlowFracCurve.setMinimumValueofx(0.75) + clgCapFuncFlowFracCurve.setMaximumValueofx(1.25) + # create clgEirFuncTempCurve + clgEirFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgEirFuncTempCurve.setCoefficient1Constant(-0.536161) + clgEirFuncTempCurve.setCoefficient2x(0.105138) + clgEirFuncTempCurve.setCoefficient3xPOW2(-0.00172659) + clgEirFuncTempCurve.setCoefficient4y(0.0149848) + clgEirFuncTempCurve.setCoefficient5yPOW2(0.000659948) + clgEirFuncTempCurve.setCoefficient6xTIMESY(-0.0017385) + clgEirFuncTempCurve.setMinimumValueofx(16.5556) + clgEirFuncTempCurve.setMaximumValueofx(22.1111) + clgEirFuncTempCurve.setMinimumValueofy(23.7778) + clgEirFuncTempCurve.setMaximumValueofy(47.66) + # create clgEirFuncFlowFracCurve + clgEirFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgEirFuncFlowFracCurve.setCoefficient1Constant(1.19525) + clgEirFuncFlowFracCurve.setCoefficient2x(-0.306138) + clgEirFuncFlowFracCurve.setCoefficient3xPOW2(0.110973) + clgEirFuncFlowFracCurve.setMinimumValueofx(0.75) + clgEirFuncFlowFracCurve.setMaximumValueofx(1.25) + # create clgPlrCurve + clgPlrCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgPlrCurve.setCoefficient1Constant(0.77100) + clgPlrCurve.setCoefficient2x(0.22900) + clgPlrCurve.setCoefficient3xPOW2(0.0) + clgPlrCurve.setMinimumValueofx(0.0) + clgPlrCurve.setMaximumValueofx(1.0) + # cooling coil + cooling_coil = OpenStudio::Model::CoilCoolingDXTwoSpeed.new(model, + model.alwaysOnDiscreteSchedule, + clgCapFuncTempCurve, + clgCapFuncFlowFracCurve, + clgEirFuncTempCurve, + clgEirFuncFlowFracCurve, + clgPlrCurve, + clgCapFuncTempCurve, + clgEirFuncTempCurve) + cooling_coil.setRatedHighSpeedCOP(parameters['doasDXEER'] / 3.412) + cooling_coil.setRatedLowSpeedCOP(parameters['doasDXEER'] / 3.412) + air_loop_comps << cooling_coil + end + unless options['zoneHVAC'] == 'DualDuct' + # create controller outdoor air + controller_OA = OpenStudio::Model::ControllerOutdoorAir.new(model) + controller_OA.autosizeMinimumOutdoorAirFlowRate + controller_OA.autosizeMaximumOutdoorAirFlowRate + # create ventilation schedules and assign to OA controller + if options['primaryHVAC']['doas'] + controller_OA.setMinimumFractionofOutdoorAirSchedule(model.alwaysOnDiscreteSchedule) + controller_OA.setMaximumFractionofOutdoorAirSchedule(model.alwaysOnDiscreteSchedule) + else + # multizone VAV that ventilates + controller_OA.setMaximumFractionofOutdoorAirSchedule(options['ventilation_schedule']) + controller_OA.setEconomizerControlType('DifferentialEnthalpy') + # add night cycling (ML would people actually do this for a VAV system?)) + airloop_primary.setNightCycleControlType('CycleOnAny') # ML Does this work with variable speed fans? + end + controller_OA.setHeatRecoveryBypassControlType('BypassWhenOAFlowGreaterThanMinimum') + # create outdoor air system + system_OA = OpenStudio::Model::AirLoopHVACOutdoorAirSystem.new(model, controller_OA) + air_loop_comps << system_OA + # create Evaporative cooler + unless parameters['doasEvap'] == 'none' + evap_cooler = OpenStudio::Model::EvaporativeCoolerDirectResearchSpecial.new(model, model.alwaysOnDiscreteSchedule) + evap_cooler.setCoolerEffectiveness(0.85) + end + # create ERV + unless parameters['doasERV'] == 'none' + heat_exchanger = OpenStudio::Model::HeatExchangerAirToAirSensibleAndLatent.new(model) + heat_exchanger.setAvailabilitySchedule(model.alwaysOnDiscreteSchedule) + if parameters['doasERV'] == 'rotary wheel w/o economizer lockout' + sensible_eff = 0.75 + latent_eff = 0.69 + # heat_exchanger.setEconomizerLockout(false) + heat_exchanger.setString(23, 'No') + elsif parameters['doasERV'] == 'rotary wheel w/ economizer lockout' + sensible_eff = 0.75 + latent_eff = 0.69 + # heat_exchanger.setEconomizerLockout(true) + heat_exchanger.setString(23, 'Yes') + elsif parameters['doasERV'] == 'plate w/o economizer lockout' + sensible_eff = 0.52 + latent_eff = 0.50 + # heat_exchanger.setEconomizerLockout(false) + heat_exchanger.setString(23, 'No') + elsif parameters['doasERV'] == 'plate w/ economizer lockout' + sensible_eff = 0.52 + latent_eff = 0.50 + # heat_exchanger.setEconomizerLockout(true) + heat_exchanger.setString(23, 'Yes') + end + heat_exchanger.setSensibleEffectivenessat100CoolingAirFlow(sensible_eff) + heat_exchanger.setSensibleEffectivenessat100HeatingAirFlow(sensible_eff) + heat_exchanger.setSensibleEffectivenessat75CoolingAirFlow(sensible_eff) + heat_exchanger.setSensibleEffectivenessat75HeatingAirFlow(sensible_eff) + heat_exchanger.setLatentEffectivenessat100CoolingAirFlow(latent_eff) + heat_exchanger.setLatentEffectivenessat100HeatingAirFlow(latent_eff) + heat_exchanger.setLatentEffectivenessat75CoolingAirFlow(latent_eff) + heat_exchanger.setLatentEffectivenessat75HeatingAirFlow(latent_eff) + heat_exchanger.setFrostControlType('ExhaustOnly') + heat_exchanger.setThresholdTemperature(-12.2) + heat_exchanger.setInitialDefrostTimeFraction(0.1670) + heat_exchanger.setRateofDefrostTimeFractionIncrease(0.0240) + end + +end + # create scheduled setpoint manager for airloop + if options['primaryHVAC']['doas'] || (options['zoneHVAC'] == 'DualDuct') + # DOAS or VAV for cooling and not ventilation + setpoint_manager = OpenStudio::Model::SetpointManagerScheduled.new(model, options['primary_sat_schedule']) + else + # VAV for cooling and ventilation + setpoint_manager = OpenStudio::Model::SetpointManagerOutdoorAirReset.new(model) + setpoint_manager.setSetpointatOutdoorLowTemperature(15.6) + setpoint_manager.setOutdoorLowTemperature(14.4) + setpoint_manager.setSetpointatOutdoorHighTemperature(12.8) + setpoint_manager.setOutdoorHighTemperature(21.1) + end + # connect components to airloop + # find the supply inlet node of the airloop + airloop_supply_inlet = airloop_primary.supplyInletNode + # add the components to the airloop + air_loop_comps.each do |comp| + comp.addToNode(airloop_supply_inlet) + if comp.to_CoilHeatingWater.is_initialized + options['hot_water_plant'].addDemandBranchForComponent(comp) + comp.controllerWaterCoil.get.setMinimumActuatedFlow(0) + elsif comp.to_CoilCoolingWater.is_initialized + options['chilled_water_plant'].addDemandBranchForComponent(comp) + comp.controllerWaterCoil.get.setMinimumActuatedFlow(0) + end + end + unless (options['zoneHVAC'] == 'DualDuct') || (parameters['doasERV'] == 'none') + heat_exchanger.addToNode(system_OA.outboardOANode.get) + end + + unless parameters['doasEvap'] == 'none' + if parameters['doasERV'] == 'none' + evap_cooler.addToNode(system_OA.outboardOANode.get) + else + hxPrimary_outlet_node = heat_exchanger.primaryAirOutletModelObject.get.to_Node.get + evap_cooler.addToNode(hxPrimary_outlet_node) + end + end + + # add setpoint manager to supply equipment outlet node + setpoint_manager.addToNode(airloop_primary.supplyOutletNode) + # add thermal zones to airloop + thermalZonesToAdd.each do |zone| + # make an air terminal for the zone + if options['primaryHVAC']['fan'] == 'Variable' + air_terminal = OpenStudio::Model::AirTerminalSingleDuctVAVNoReheat.new(model, model.alwaysOnDiscreteSchedule) + else + air_terminal = OpenStudio::Model::AirTerminalSingleDuctUncontrolled.new(model, model.alwaysOnDiscreteSchedule) + end + # attach new terminal to the zone and to the airloop + airloop_primary.addBranchForZone(zone, air_terminal.to_StraightComponent) + end + primary_airloops << airloop_primary + end + end + + # pass back primary airloops + result = primary_airloops + return result + end # end of def + + def self.createVRFAirConditioners(model, runner, options, parameters) + vrf_AirConditioners = [] + # create primary airloop for each story + assignedThermalZones = [] + model.getBuildingStorys.sort.each do |building_story| + # ML stories need to be reordered from the ground up + thermalZonesToAdd = [] + building_story.spaces.each do |space| + # make sure spaces are assigned to thermal zones + # otherwise might want to send a warning + if space.thermalZone.is_initialized + thermal_zone = space.thermalZone.get + # grab primary zones + if options['zonesPrimary'].include? thermal_zone + # make sure zone was not already assigned to another air loop + unless assignedThermalZones.include? thermal_zone + # make sure thermal zones are not duplicated (spaces can share thermal zones) + unless thermalZonesToAdd.include? thermal_zone + thermalZonesToAdd << thermal_zone + end + end + end + end + end + # make sure thermal zones don't get added to more than one air loop + assignedThermalZones << thermalZonesToAdd + + unless thermalZonesToAdd.empty? + # create new air loop if story contains primary zones + # add an air conditioner variable refrigerant flow to each floor + vrfAirConditioner = OpenStudio::Model::AirConditionerVariableRefrigerantFlow.new(model) + vrfAirConditioner.setName("VRF Heat Pump - #{building_story.name}") + vrfAirConditioner.setRatedCoolingCOP(parameters['vrfCoolCOP']) + vrfAirConditioner.setRatedHeatingCOP(parameters['vrfHeatCOP']) + vrfMinOATHPHeat_si = OpenStudio.convert(parameters['vrfMinOATHPHeat'], 'F', 'C').get + vrfAirConditioner.setMinimumOutdoorTemperatureinHeatingMode(vrfMinOATHPHeat_si) + if parameters['vrfHPHeatRecovery'] == 'Yes' + vrfAirConditioner.setHeatPumpWasteHeatRecovery(true) + else + vrfAirConditioner.setHeatPumpWasteHeatRecovery(false) + end + vrfAirConditioner.setDefrostStrategy(parameters['vrfDefrost']) + vrfEquivPipingLength_si = OpenStudio.convert(parameters['vrfEquivPipingLength'], 'ft', 'm').get + vrfPipingHeight_si = OpenStudio.convert(parameters['vrfPipingHeight'], 'ft', 'm').get + vrfAirConditioner.setEquivalentPipingLengthusedforPipingCorrectionFactorinCoolingMode(vrfEquivPipingLength_si) + vrfAirConditioner.setEquivalentPipingLengthusedforPipingCorrectionFactorinHeatingMode(vrfEquivPipingLength_si) + vrfAirConditioner.setVerticalHeightusedforPipingCorrectionFactor(vrfPipingHeight_si) + vrfAirConditioner.setAvailabilitySchedule(model.alwaysOnDiscreteSchedule) + vrfAirConditioner.setZoneforMasterThermostatLocation(thermalZonesToAdd[0]) + if parameters['vrfCondenserType'] == 'WaterCooled' + vrfAirConditioner.setString(56, 'WaterCooled') + elsif parameters['vrfCondenserType'] == 'EvaporativelyCooled' + vrfAirConditioner.setString(56, 'EvaporativelyCooled') + end + if parameters['vrfCondenserType'] == 'WaterCooled' + options['heat_pump_loop'].addDemandBranchForComponent(vrfAirConditioner) + end + + # add terminal unit to the air conditioner VRF, one TU per thermal zone + thermalZonesToAdd.each do |zone| + # construct Terminal VRF Unit + vrf_terminalUnit = OpenStudio::Model::ZoneHVACTerminalUnitVariableRefrigerantFlow.new(model) + vrf_terminalUnit.setTerminalUnitAvailabilityschedule(model.alwaysOnDiscreteSchedule) + vrf_terminalUnit.setOutdoorAirFlowRateDuringCoolingOperation(0) + vrf_terminalUnit.setOutdoorAirFlowRateDuringHeatingOperation(0) + vrf_terminalUnit.setOutdoorAirFlowRateWhenNoCoolingorHeatingisNeeded(0) + vrf_terminalUnit.addToThermalZone(zone) + vrfAirConditioner.addTerminal(vrf_terminalUnit) + end + vrf_AirConditioners << vrfAirConditioner + end + end + + # pass back primary airloops + result = vrf_AirConditioners + return result + end # end of def + + def self.createPrimaryZoneEquipment(model, runner, options, parameters) + model.getThermalZones.each do |zone| + if options['zonesPrimary'].include? zone + if options['zoneHVAC'] == 'FanCoil' + # create fan coil + # create fan + fan = OpenStudio::Model::FanOnOff.new(model, model.alwaysOnDiscreteSchedule) + fan.setFanEfficiency(0.5) + fan.setPressureRise(75) # Pa + fan.autosizeMaximumFlowRate + fan.setMotorEfficiency(0.9) + fan.setMotorInAirstreamFraction(1.0) + # create cooling coil and connect to chilled water plant + cooling_coil = OpenStudio::Model::CoilCoolingWater.new(model, model.alwaysOnDiscreteSchedule) + options['chilled_water_plant'].addDemandBranchForComponent(cooling_coil) + cooling_coil.controllerWaterCoil.get.setMinimumActuatedFlow(0) + # create heating coil and connect to hot water plant + heating_coil = OpenStudio::Model::CoilHeatingWater.new(model, model.alwaysOnDiscreteSchedule) + options['hot_water_plant'].addDemandBranchForComponent(heating_coil) + heating_coil.controllerWaterCoil.get.setMinimumActuatedFlow(0) + # construct fan coil + fan_coil = OpenStudio::Model::ZoneHVACFourPipeFanCoil.new(model, + model.alwaysOnDiscreteSchedule, + fan, + cooling_coil, + heating_coil) + fan_coil.setMaximumOutdoorAirFlowRate(0) + # add fan coil to thermal zone + fan_coil.addToThermalZone(zone) + elsif (options['zoneHVAC'] == 'WSHP') || (options['zoneHVAC'] == 'GSHP') + # create water source heat pump and attach to heat pump loop + # create fan + fan = OpenStudio::Model::FanOnOff.new(model, model.alwaysOnDiscreteSchedule) + fan.setFanEfficiency(0.75) + fan_eff = fan.fanEfficiency + fan.setMotorEfficiency(0.9) + motor_eff = fan.motorEfficiency + fan.autosizeMaximumFlowRate + if parameters['wshpFanType'] == 'PSC' # use 0.3W/cfm, ECM - 0.2W/cfm + watt_per_cfm = 0.30 # W/cfm + else + watt_per_cfm = 0.20 # W/cfm + end + pres_rise = OpenStudio.convert(watt_per_cfm * fan_eff * motor_eff / 0.1175, 'inH_{2}O', 'Pa').get + fan.setPressureRise(pres_rise) # Pa + fan.setMotorInAirstreamFraction(1.0) + # create cooling coil and connect to heat pump loop + cooling_coil = OpenStudio::Model::CoilCoolingWaterToAirHeatPumpEquationFit.new(model) + cooling_coil.setRatedCoolingCoefficientofPerformance(parameters['wshpCoolingEER'] / 3.412) # xf 061014: need to change per fan power and pump power adjustment + cooling_coil.setRatedCoolingCoefficientofPerformance(6.45) + cooling_coil.setTotalCoolingCapacityCoefficient1(-9.149069561) + cooling_coil.setTotalCoolingCapacityCoefficient2(10.87814026) + cooling_coil.setTotalCoolingCapacityCoefficient3(-1.718780157) + cooling_coil.setTotalCoolingCapacityCoefficient4(0.746414818) + cooling_coil.setTotalCoolingCapacityCoefficient5(0.0) + cooling_coil.setSensibleCoolingCapacityCoefficient1(-5.462690012) + cooling_coil.setSensibleCoolingCapacityCoefficient2(17.95968138) + cooling_coil.setSensibleCoolingCapacityCoefficient3(-11.87818402) + cooling_coil.setSensibleCoolingCapacityCoefficient4(-0.980163419) + cooling_coil.setSensibleCoolingCapacityCoefficient5(0.767285761) + cooling_coil.setSensibleCoolingCapacityCoefficient6(0.0) + cooling_coil.setCoolingPowerConsumptionCoefficient1(-3.205409884) + cooling_coil.setCoolingPowerConsumptionCoefficient2(-0.976409399) + cooling_coil.setCoolingPowerConsumptionCoefficient3(3.97892546) + cooling_coil.setCoolingPowerConsumptionCoefficient4(0.938181818) + cooling_coil.setCoolingPowerConsumptionCoefficient5(0.0) + options['heat_pump_loop'].addDemandBranchForComponent(cooling_coil) + # create heating coil and connect to heat pump loop + heating_coil = OpenStudio::Model::CoilHeatingWaterToAirHeatPumpEquationFit.new(model) + heating_coil.setRatedHeatingCoefficientofPerformance(parameters['wshpHeatingCOP']) # xf 061014: need to change per fan power and pump power adjustment + heating_coil.setRatedHeatingCoefficientofPerformance(4.0) + heating_coil.setHeatingCapacityCoefficient1(-1.361311959) + heating_coil.setHeatingCapacityCoefficient2(-2.471798046) + heating_coil.setHeatingCapacityCoefficient3(4.173164514) + heating_coil.setHeatingCapacityCoefficient4(0.640757401) + heating_coil.setHeatingCapacityCoefficient5(0.0) + heating_coil.setHeatingPowerConsumptionCoefficient1(-2.176941116) + heating_coil.setHeatingPowerConsumptionCoefficient2(0.832114286) + heating_coil.setHeatingPowerConsumptionCoefficient3(1.570743399) + heating_coil.setHeatingPowerConsumptionCoefficient4(0.690793651) + heating_coil.setHeatingPowerConsumptionCoefficient5(0.0) + options['heat_pump_loop'].addDemandBranchForComponent(heating_coil) + # create supplemental heating coil + supplemental_heating_coil = OpenStudio::Model::CoilHeatingElectric.new(model, model.alwaysOnDiscreteSchedule) + # construct heat pump + heat_pump = OpenStudio::Model::ZoneHVACWaterToAirHeatPump.new(model, + model.alwaysOnDiscreteSchedule, + fan, + heating_coil, + cooling_coil, + supplemental_heating_coil) + heat_pump.setSupplyAirFlowRateWhenNoCoolingorHeatingisNeeded(OpenStudio::OptionalDouble.new(0)) + heat_pump.setOutdoorAirFlowRateDuringCoolingOperation(OpenStudio::OptionalDouble.new(0)) + heat_pump.setOutdoorAirFlowRateDuringHeatingOperation(OpenStudio::OptionalDouble.new(0)) + heat_pump.setOutdoorAirFlowRateWhenNoCoolingorHeatingisNeeded(OpenStudio::OptionalDouble.new(0)) + # add heat pump to thermal zone + heat_pump.addToThermalZone(zone) + elsif options['zoneHVAC'] == 'ASHP' + # create air source heat pump + # create fan + fan = OpenStudio::Model::FanOnOff.new(model, model.alwaysOnDiscreteSchedule) + fan.setFanEfficiency(0.5) + fan.setPressureRise(75) # Pa + fan.autosizeMaximumFlowRate + fan.setMotorEfficiency(0.9) + fan.setMotorInAirstreamFraction(1.0) + # create heating coil + # create htgCapFuncTempCurve + htgCapFuncTempCurve = OpenStudio::Model::CurveCubic.new(model) + htgCapFuncTempCurve.setCoefficient1Constant(0.758746) + htgCapFuncTempCurve.setCoefficient2x(0.027626) + htgCapFuncTempCurve.setCoefficient3xPOW2(0.000148716) + htgCapFuncTempCurve.setCoefficient4xPOW3(0.0000034992) + htgCapFuncTempCurve.setMinimumValueofx(-20) + htgCapFuncTempCurve.setMaximumValueofx(20) + # create htgCapFuncFlowFracCurve + htgCapFuncFlowFracCurve = OpenStudio::Model::CurveCubic.new(model) + htgCapFuncFlowFracCurve.setCoefficient1Constant(0.84) + htgCapFuncFlowFracCurve.setCoefficient2x(0.16) + htgCapFuncFlowFracCurve.setCoefficient3xPOW2(0) + htgCapFuncFlowFracCurve.setCoefficient4xPOW3(0) + htgCapFuncFlowFracCurve.setMinimumValueofx(0.5) + htgCapFuncFlowFracCurve.setMaximumValueofx(1.5) + # create htgEirFuncTempCurve + htgEirFuncTempCurve = OpenStudio::Model::CurveCubic.new(model) + htgEirFuncTempCurve.setCoefficient1Constant(1.19248) + htgEirFuncTempCurve.setCoefficient2x(-0.0300438) + htgEirFuncTempCurve.setCoefficient3xPOW2(0.00103745) + htgEirFuncTempCurve.setCoefficient4xPOW3(-0.000023328) + htgEirFuncTempCurve.setMinimumValueofx(-20) + htgEirFuncTempCurve.setMaximumValueofx(20) + # create htgEirFuncFlowFracCurve + htgEirFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + htgEirFuncFlowFracCurve.setCoefficient1Constant(1.3824) + htgEirFuncFlowFracCurve.setCoefficient2x(-0.4336) + htgEirFuncFlowFracCurve.setCoefficient3xPOW2(0.0512) + htgEirFuncFlowFracCurve.setMinimumValueofx(0) + htgEirFuncFlowFracCurve.setMaximumValueofx(1) + # create htgPlrCurve + htgPlrCurve = OpenStudio::Model::CurveQuadratic.new(model) + htgPlrCurve.setCoefficient1Constant(0.75) + htgPlrCurve.setCoefficient2x(0.25) + htgPlrCurve.setCoefficient3xPOW2(0.0) + htgPlrCurve.setMinimumValueofx(0.0) + htgPlrCurve.setMaximumValueofx(1.0) + # heating coil + heating_coil = OpenStudio::Model::CoilHeatingDXSingleSpeed.new(model, + model.alwaysOnDiscreteSchedule, + htgCapFuncTempCurve, + htgCapFuncFlowFracCurve, + htgEirFuncTempCurve, + htgEirFuncFlowFracCurve, + htgPlrCurve) + heating_coil.setRatedCOP(3.4) + heating_coil.setCrankcaseHeaterCapacity(200) + heating_coil.setMaximumOutdoorDryBulbTemperatureforCrankcaseHeaterOperation(8) + heating_coil.autosizeResistiveDefrostHeaterCapacity + # create cooling coil + # create clgCapFuncTempCurve + clgCapFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgCapFuncTempCurve.setCoefficient1Constant(0.942587793) + clgCapFuncTempCurve.setCoefficient2x(0.009543347) + clgCapFuncTempCurve.setCoefficient3xPOW2(0.0018423) + clgCapFuncTempCurve.setCoefficient4y(-0.011042676) + clgCapFuncTempCurve.setCoefficient5yPOW2(0.000005249) + clgCapFuncTempCurve.setCoefficient6xTIMESY(-0.000009720) + clgCapFuncTempCurve.setMinimumValueofx(17) + clgCapFuncTempCurve.setMaximumValueofx(22) + clgCapFuncTempCurve.setMinimumValueofy(13) + clgCapFuncTempCurve.setMaximumValueofy(46) + # create clgCapFuncFlowFracCurve + clgCapFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgCapFuncFlowFracCurve.setCoefficient1Constant(0.718954) + clgCapFuncFlowFracCurve.setCoefficient2x(0.435436) + clgCapFuncFlowFracCurve.setCoefficient3xPOW2(-0.154193) + clgCapFuncFlowFracCurve.setMinimumValueofx(0.75) + clgCapFuncFlowFracCurve.setMaximumValueofx(1.25) + # create clgEirFuncTempCurve + clgEirFuncTempCurve = OpenStudio::Model::CurveBiquadratic.new(model) + clgEirFuncTempCurve.setCoefficient1Constant(0.342414409) + clgEirFuncTempCurve.setCoefficient2x(0.034885008) + clgEirFuncTempCurve.setCoefficient3xPOW2(-0.000623700) + clgEirFuncTempCurve.setCoefficient4y(0.004977216) + clgEirFuncTempCurve.setCoefficient5yPOW2(0.000437951) + clgEirFuncTempCurve.setCoefficient6xTIMESY(-0.000728028) + clgEirFuncTempCurve.setMinimumValueofx(17) + clgEirFuncTempCurve.setMaximumValueofx(22) + clgEirFuncTempCurve.setMinimumValueofy(13) + clgEirFuncTempCurve.setMaximumValueofy(46) + # create clgEirFuncFlowFracCurve + clgEirFuncFlowFracCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgEirFuncFlowFracCurve.setCoefficient1Constant(1.1552) + clgEirFuncFlowFracCurve.setCoefficient2x(-0.1808) + clgEirFuncFlowFracCurve.setCoefficient3xPOW2(0.0256) + clgEirFuncFlowFracCurve.setMinimumValueofx(0.5) + clgEirFuncFlowFracCurve.setMaximumValueofx(1.5) + # create clgPlrCurve + clgPlrCurve = OpenStudio::Model::CurveQuadratic.new(model) + clgPlrCurve.setCoefficient1Constant(0.75) + clgPlrCurve.setCoefficient2x(0.25) + clgPlrCurve.setCoefficient3xPOW2(0.0) + clgPlrCurve.setMinimumValueofx(0.0) + clgPlrCurve.setMaximumValueofx(1.0) + # cooling coil + cooling_coil = OpenStudio::Model::CoilCoolingDXSingleSpeed.new(model, + model.alwaysOnDiscreteSchedule, + clgCapFuncTempCurve, + clgCapFuncFlowFracCurve, + clgEirFuncTempCurve, + clgEirFuncFlowFracCurve, + clgPlrCurve) + cooling_coil.setRatedCOP(OpenStudio::OptionalDouble.new(4)) + # create supplemental heating coil + supplemental_heating_coil = OpenStudio::Model::CoilHeatingElectric.new(model, model.alwaysOnDiscreteSchedule) + # construct heat pump + heat_pump = OpenStudio::Model::ZoneHVACPackagedTerminalHeatPump.new(model, + model.alwaysOnDiscreteSchedule, + fan, + heating_coil, + cooling_coil, + supplemental_heating_coil) + heat_pump.setSupplyAirFlowRateWhenNoCoolingorHeatingisNeeded(0) + heat_pump.setOutdoorAirFlowRateDuringCoolingOperation(0) + heat_pump.setOutdoorAirFlowRateDuringHeatingOperation(0) + heat_pump.setOutdoorAirFlowRateWhenNoCoolingorHeatingisNeeded(0) + # add heat pump to thermal zone + heat_pump.addToThermalZone(zone) + elsif options['zoneHVAC'] == 'Baseboard' + # create baseboard heater add add to thermal zone and hot water loop + baseboard_coil = OpenStudio::Model::CoilHeatingWaterBaseboard.new(model) + baseboard_heater = OpenStudio::Model::ZoneHVACBaseboardConvectiveWater.new(model, model.alwaysOnDiscreteSchedule, baseboard_coil) + baseboard_heater.addToThermalZone(zone) + options['hot_water_plant'].addDemandBranchForComponent(baseboard_coil) + elsif options['zoneHVAC'] == 'Radiant' + # create low temperature radiant object and add to thermal zone and radiant plant loops + # create hot water coil and attach to radiant hot water loop + heating_coil = OpenStudio::Model::CoilHeatingLowTempRadiantVarFlow.new(model, options['mean_radiant_heating_setpoint_schedule']) + options['radiant_hot_water_plant'].addDemandBranchForComponent(heating_coil) + # create chilled water coil and attach to radiant chilled water loop + cooling_coil = OpenStudio::Model::CoilCoolingLowTempRadiantVarFlow.new(model, options['mean_radiant_cooling_setpoint_schedule']) + options['radiant_chilled_water_plant'].addDemandBranchForComponent(cooling_coil) + low_temp_radiant = OpenStudio::Model::ZoneHVACLowTempRadiantVarFlow.new(model, + model.alwaysOnDiscreteSchedule, + heating_coil, + cooling_coil) + low_temp_radiant.setRadiantSurfaceType('Floors') + low_temp_radiant.setHydronicTubingInsideDiameter(0.012) + low_temp_radiant.setTemperatureControlType('MeanRadiantTemperature') + low_temp_radiant.addToThermalZone(zone) + # create radiant floor construction and substitute for existing floor (interior or exterior) constructions + # create materials for radiant floor construction + layers = [] + # ignore layer below insulation, which will depend on boundary condition + layers << rigid_insulation_1in = OpenStudio::Model::StandardOpaqueMaterial.new(model, 'Rough', 0.0254, 0.02, 56.06, 1210) + layers << concrete_2in = OpenStudio::Model::StandardOpaqueMaterial.new(model, 'MediumRough', 0.0508, 2.31, 2322, 832) + layers << concrete_2in + # create radiant floor construction from materials + radiant_floor = OpenStudio::Model::ConstructionWithInternalSource.new(layers) + radiant_floor.setSourcePresentAfterLayerNumber(2) + radiant_floor.setSourcePresentAfterLayerNumber(2) + # assign radiant construction to zone floor + zone.spaces.each do |space| + space.surfaces.each do |surface| + if surface.surfaceType == 'Floor' + surface.setConstruction(radiant_floor) + end + end + end + elsif options['zoneHVAC'] == 'DualDuct' + # create baseboard heater add add to thermal zone and hot water loop + baseboard_coil = OpenStudio::Model::CoilHeatingWaterBaseboard.new(model) + baseboard_heater = OpenStudio::Model::ZoneHVACBaseboardConvectiveWater.new(model, model.alwaysOnDiscreteSchedule, baseboard_coil) + baseboard_heater.addToThermalZone(zone) + options['hot_water_plant'].addDemandBranchForComponent(baseboard_coil) + # create fan coil (to mimic functionality of DOAS) + # variable speed fan + fan = OpenStudio::Model::FanVariableVolume.new(model, model.alwaysOnDiscreteSchedule) + fan.setFanEfficiency(0.69) + fan.setPressureRise(75) # Pa #ML This number is a guess; zone equipment pretending to be a DOAS + fan.autosizeMaximumFlowRate + fan.setFanPowerMinimumFlowFraction(0.6) + fan.setMotorEfficiency(0.9) + fan.setMotorInAirstreamFraction(1.0) + # create chilled water coil and attach to chilled water loop + cooling_coil = OpenStudio::Model::CoilCoolingWater.new(model, model.alwaysOnDiscreteSchedule) + options['chilled_water_plant'].addDemandBranchForComponent(cooling_coil) + cooling_coil.controllerWaterCoil.get.setMinimumActuatedFlow(0) + # create hot water coil and attach to hot water loop + heating_coil = OpenStudio::Model::CoilHeatingWater.new(model, model.alwaysOnDiscreteSchedule) + options['hot_water_plant'].addDemandBranchForComponent(heating_coil) + heating_coil.controllerWaterCoil.get.setMinimumActuatedFlow(0) + # construct fan coil (DOAS) and attach to thermal zone + fan_coil_doas = OpenStudio::Model::ZoneHVACFourPipeFanCoil.new(model, + options['ventilation_schedule'], + fan, + cooling_coil, + heating_coil) + fan_coil_doas.setCapacityControlMethod('VariableFanVariableFlow') + fan_coil_doas.addToThermalZone(zone) + end + end + end + end # end of def + + def self.addDCV(model, runner, options) + options['primary_airloops']&.each do |airloop| + if options['allHVAC']['primary']['fan'] == 'Variable' + if airloop.airLoopHVACOutdoorAirSystem.is_initialized + controller_mv = airloop.airLoopHVACOutdoorAirSystem.get.getControllerOutdoorAir.controllerMechanicalVentilation + controller_mv.setDemandControlledVentilation(true) + runner.registerInfo("Enabling demand control ventilation for #{airloop.name}") + end + end + end + + options['secondary_airloops']&.each do |airloop| + if options['allHVAC']['secondary']['fan'] == 'Variable' + if airloop.airLoopHVACOutdoorAirSystem.is_initialized + controller_mv = airloop.airLoopHVACOutdoorAirSystem.get.getControllerOutdoorAir.controllerMechanicalVentilation + controller_mv.setDemandControlledVentilation(true) + runner.registerInfo("Enabling demand control ventilation for #{airloop.name}") + end + end + end + end # end of def +end diff --git a/lib/measures/vr_fwith_doas/resources/OsLib_HelperMethods.rb b/lib/measures/vr_fwith_doas/resources/OsLib_HelperMethods.rb new file mode 100644 index 0000000..9521c67 --- /dev/null +++ b/lib/measures/vr_fwith_doas/resources/OsLib_HelperMethods.rb @@ -0,0 +1,114 @@ +# frozen_string_literal: true + +module OsLib_HelperMethods + # populate choice argument from model objects + def self.populateChoiceArgFromModelObjects(model, modelObject_args_hash, includeBuilding = nil) + # populate choice argument for constructions that are applied to surfaces in the model + modelObject_handles = OpenStudio::StringVector.new + modelObject_display_names = OpenStudio::StringVector.new + + # looping through sorted hash of constructions + modelObject_args_hash.sort.map do |key, value| + modelObject_handles << value.handle.to_s + modelObject_display_names << key + end + + if !includeBuilding.nil? + # add building to string vector with space type + building = model.getBuilding + modelObject_handles << building.handle.to_s + modelObject_display_names << includeBuilding + end + + result = { 'modelObject_handles' => modelObject_handles, 'modelObject_display_names' => modelObject_display_names } + return result + end # end of OsLib_HelperMethods.populateChoiceArgFromModelObjects + + # check choice argument made from model objects + def self.checkChoiceArgFromModelObjects(object, variableName, to_ObjectType, runner, user_arguments) + apply_to_building = false + modelObject = nil + if object.empty? + handle = runner.getStringArgumentValue(variableName, user_arguments) + if handle.empty? + runner.registerError("No #{variableName} was chosen.") # this logic makes this not work on an optional model object argument + else + runner.registerError("The selected #{variableName} with handle '#{handle}' was not found in the model. It may have been removed by another measure.") + end + return false + else + if !eval("object.get.#{to_ObjectType}").empty? + modelObject = eval("object.get.#{to_ObjectType}").get + elsif !object.get.to_Building.empty? + apply_to_building = true + else + runner.registerError("Script Error - argument not showing up as #{variableName}.") + return false + end + end # end of if construction.empty? + + result = { 'modelObject' => modelObject, 'apply_to_building' => apply_to_building } + end # end of OsLib_HelperMethods.checkChoiceArgFromModelObjects + + # check choice argument made from model objects + def self.checkOptionalChoiceArgFromModelObjects(object, variableName, to_ObjectType, runner, user_arguments) + apply_to_building = false + modelObject = nil + if object.empty? + handle = runner.getOptionalStringArgumentValue(variableName, user_arguments) + if handle.empty? + # do nothing, this is a valid option + modelObject = nil + apply_to_building = false + else + runner.registerError("The selected #{variableName} with handle '#{handle}' was not found in the model. It may have been removed by another measure.") + return false + end + else + if !eval("object.get.#{to_ObjectType}").empty? + modelObject = eval("object.get.#{to_ObjectType}").get + elsif !object.get.to_Building.empty? + apply_to_building = true + else + runner.registerError("Script Error - argument not showing up as #{variableName}.") + return false + end + end # end of if construction.empty? + + result = { 'modelObject' => modelObject, 'apply_to_building' => apply_to_building } + end # end of OsLib_HelperMethods.checkChoiceArgFromModelObjects + + # check value of double arguments + def self.checkDoubleArguments(runner, min, max, argumentHash) + # error flag + error = false + + argumentHash.each do |display, argument| + if !min.nil? + if argument < min + runner.registerError("Please enter value between #{min} and #{max} for #{display}.") # add in argument display name + error = true + end + end + if !max.nil? + if argument > max + runner.registerError("Please enter value between #{min} and #{max} for #{display}.") # add in argument display name + error = true + end + end + end # end of argumentArray.each do + + # check for any errors + if error + return false + else + return true + end + end # end of OsLib_HelperMethods.checkDoubleArguments + + # OpenStudio has built in toNeatString method + # OpenStudio::toNeatString(double,2,true)# double,decimals, show commas + + # OpenStudio has built in helper for unit conversion. That can be done using OpenStudio::convert() as shown below. + # OpenStudio::convert(double,"from unit string","to unit string").get +end diff --git a/lib/measures/vr_fwith_doas/resources/OsLib_LightingAndEquipment.rb b/lib/measures/vr_fwith_doas/resources/OsLib_LightingAndEquipment.rb new file mode 100644 index 0000000..535391e --- /dev/null +++ b/lib/measures/vr_fwith_doas/resources/OsLib_LightingAndEquipment.rb @@ -0,0 +1,99 @@ +# frozen_string_literal: true + +require "#{File.dirname(__FILE__)}/OsLib_Schedules" + +# load OpenStudio measure libraries +module OsLib_LightingAndEquipment + include OsLib_Schedules + + # return min ans max from array + def self.getExteriorLightsValue(model) + facility = model.getFacility + starting_exterior_lights_power = 0 + starting_exterior_lights = facility.exteriorLights + starting_exterior_lights.each do |starting_exterior_light| + starting_exterior_light_multiplier = starting_exterior_light.multiplier + starting_exterior_light_def = starting_exterior_light.exteriorLightsDefinition + starting_exterior_light_base_power = starting_exterior_light_def.designLevel + starting_exterior_lights_power += starting_exterior_light_base_power * starting_exterior_light_multiplier + end + + result = { 'exteriorLightingPower' => starting_exterior_lights_power, 'exteriorLights' => starting_exterior_lights } + return result + end # end of OsLib_LightingAndEquipment.getExteriorLightsValue + + # return min ans max from array + def self.removeAllExteriorLights(model, runner) + facility = model.getFacility + lightsRemoved = false + starting_exterior_lights = facility.exteriorLights + starting_exterior_lights.each do |starting_exterior_light| + runner.registerInfo("Removed exterior light named #{starting_exterior_light.name}.") + starting_exterior_light.remove + lightsRemoved = true + end + + result = lightsRemoved + return result + end # end of OsLib_LightingAndEquipment.removeAllExteriorLights + + # return min ans max from array + def self.addExteriorLights(model, runner, options = {}) + # set defaults to use if user inputs not passed in + defaults = { + 'name' => 'Exterior Light', + 'power' => 0, + 'subCategory' => 'Exterior Lighting', + 'controlOption' => 'AstronomicalClock', + 'setbackStartTime' => 0, + 'setbackEndTime' => 0, + 'setbackFraction' => 0.25 + } + + # merge user inputs with defaults + options = defaults.merge(options) + + ext_lights_def = OpenStudio::Model::ExteriorLightsDefinition.new(model) + ext_lights_def.setName("#{options['name']} Definition") + runner.registerInfo("Setting #{ext_lights_def.name} to a design power of #{options['power']} Watts") + ext_lights_def.setDesignLevel(options['power']) + + # creating schedule type limits for the exterior lights schedule + ext_lights_sch_type_limits = OpenStudio::Model::ScheduleTypeLimits.new(model) + ext_lights_sch_type_limits.setName("#{options['name']} Fractional") + ext_lights_sch_type_limits.setLowerLimitValue(0) + ext_lights_sch_type_limits.setUpperLimitValue(1) + ext_lights_sch_type_limits.setNumericType('Continuous') + + # prepare values for profile + if options['setbackStartTime'] == 24 + profile = { options['setbackEndTime'] => options['setbackFraction'], 24.0 => 1.0 } + elsif options['setbackStartTime'] == 0 + profile = { options['setbackEndTime'] => options['setbackFraction'], 24.0 => 1.0 } + elsif options['setbackStartTime'] > options['setbackEndTime'] + profile = { options['setbackEndTime'] => options['setbackFraction'], options['setbackStartTime'] => 1.0, 24.0 => options['setbackFraction'] } + else + profile = { options['setbackStartTime'] => 1.0, options['setbackEndTime'] => options['setbackFraction'] } + end + + # inputs + createSimpleSchedule_inputs = { + 'name' => options['name'], + 'winterTimeValuePairs' => profile, + 'summerTimeValuePairs' => profile, + 'defaultTimeValuePairs' => profile + } + + # create a ruleset schedule with a basic profile + ext_lights_sch = OsLib_Schedules.createSimpleSchedule(model, createSimpleSchedule_inputs) + + # creating exterior lights object + ext_lights = OpenStudio::Model::ExteriorLights.new(ext_lights_def, ext_lights_sch) + ext_lights.setName("#{options['power']} w Exterior Light") + ext_lights.setControlOption(options['controlOption']) + ext_lights.setEndUseSubcategory(options['subCategory']) + + result = ext_lights + return result + end # end of OsLib_LightingAndEquipment.addExteriorLights +end diff --git a/lib/measures/vr_fwith_doas/resources/OsLib_Schedules.rb b/lib/measures/vr_fwith_doas/resources/OsLib_Schedules.rb new file mode 100644 index 0000000..8f44c78 --- /dev/null +++ b/lib/measures/vr_fwith_doas/resources/OsLib_Schedules.rb @@ -0,0 +1,142 @@ +# frozen_string_literal: true + +module OsLib_Schedules + # create a ruleset schedule with a basic profile + def self.createSimpleSchedule(model, options = {}) + defaults = { + 'name' => nil, + 'winterTimeValuePairs' => { 24.0 => 0.0 }, + 'summerTimeValuePairs' => { 24.0 => 1.0 }, + 'defaultTimeValuePairs' => { 24.0 => 1.0 } + } + + # merge user inputs with defaults + options = defaults.merge(options) + + # ScheduleRuleset + sch_ruleset = OpenStudio::Model::ScheduleRuleset.new(model) + if name + sch_ruleset.setName(options['name']) + end + + # Winter Design Day + winter_dsn_day = OpenStudio::Model::ScheduleDay.new(model) + sch_ruleset.setWinterDesignDaySchedule(winter_dsn_day) + winter_dsn_day = sch_ruleset.winterDesignDaySchedule + winter_dsn_day.setName("#{sch_ruleset.name} Winter Design Day") + options['winterTimeValuePairs'].each do |k, v| + hour = k.truncate + min = ((k - hour) * 60).to_i + winter_dsn_day.addValue(OpenStudio::Time.new(0, hour, min, 0), v) + end + + # Summer Design Day + summer_dsn_day = OpenStudio::Model::ScheduleDay.new(model) + sch_ruleset.setSummerDesignDaySchedule(summer_dsn_day) + summer_dsn_day = sch_ruleset.summerDesignDaySchedule + summer_dsn_day.setName("#{sch_ruleset.name} Summer Design Day") + options['summerTimeValuePairs'].each do |k, v| + hour = k.truncate + min = ((k - hour) * 60).to_i + summer_dsn_day.addValue(OpenStudio::Time.new(0, hour, min, 0), v) + end + + # All Days + week_day = sch_ruleset.defaultDaySchedule + week_day.setName("#{sch_ruleset.name} Schedule Week Day") + options['defaultTimeValuePairs'].each do |k, v| + hour = k.truncate + min = ((k - hour) * 60).to_i + week_day.addValue(OpenStudio::Time.new(0, hour, min, 0), v) + end + + result = sch_ruleset + return result + end # end of OsLib_Schedules.createSimpleSchedule + + # create a complex ruleset schedule + def self.createComplexSchedule(model, options = {}) + defaults = { + 'name' => nil, + 'default_day' => ['always_on', [24.0, 1.0]] + } + + # merge user inputs with defaults + options = defaults.merge(options) + + # ScheduleRuleset + sch_ruleset = OpenStudio::Model::ScheduleRuleset.new(model) + if name + sch_ruleset.setName(options['name']) + end + + # Winter Design Day + unless options['winter_design_day'].nil? + winter_dsn_day = OpenStudio::Model::ScheduleDay.new(model) + sch_ruleset.setWinterDesignDaySchedule(winter_dsn_day) + winter_dsn_day = sch_ruleset.winterDesignDaySchedule + winter_dsn_day.setName("#{sch_ruleset.name} Winter Design Day") + options['winter_design_day'].each do |data_pair| + hour = data_pair[0].truncate + min = ((data_pair[0] - hour) * 60).to_i + winter_dsn_day.addValue(OpenStudio::Time.new(0, hour, min, 0), data_pair[1]) + end + end + + # Summer Design Day + unless options['summer_design_day'].nil? + summer_dsn_day = OpenStudio::Model::ScheduleDay.new(model) + sch_ruleset.setSummerDesignDaySchedule(summer_dsn_day) + summer_dsn_day = sch_ruleset.summerDesignDaySchedule + summer_dsn_day.setName("#{sch_ruleset.name} Summer Design Day") + options['summer_design_day'].each do |data_pair| + hour = data_pair[0].truncate + min = ((data_pair[0] - hour) * 60).to_i + summer_dsn_day.addValue(OpenStudio::Time.new(0, hour, min, 0), data_pair[1]) + end + end + + # Default Day + default_day = sch_ruleset.defaultDaySchedule + default_day.setName("#{sch_ruleset.name} #{options['default_day'][0]}") + default_data_array = options['default_day'] + default_data_array.delete_at(0) + default_data_array.each do |data_pair| + hour = data_pair[0].truncate + min = ((data_pair[0] - hour) * 60).to_i + default_day.addValue(OpenStudio::Time.new(0, hour, min, 0), data_pair[1]) + end + + # Rules + options['rules']&.each do |data_array| + rule = OpenStudio::Model::ScheduleRule.new(sch_ruleset) + rule.setName("#{sch_ruleset.name} #{data_array[0]} Rule") + date_range = data_array[1].split('-') + start_date = date_range[0].split('/') + end_date = date_range[1].split('/') + rule.setStartDate(model.getYearDescription.makeDate(start_date[0].to_i, start_date[1].to_i)) + rule.setEndDate(model.getYearDescription.makeDate(end_date[0].to_i, end_date[1].to_i)) + days = data_array[2].split('/') + rule.setApplySunday(true) if days.include? 'Sun' + rule.setApplyMonday(true) if days.include? 'Mon' + rule.setApplyTuesday(true) if days.include? 'Tue' + rule.setApplyWednesday(true) if days.include? 'Wed' + rule.setApplyThursday(true) if days.include? 'Thu' + rule.setApplyFriday(true) if days.include? 'Fri' + rule.setApplySaturday(true) if days.include? 'Sat' + day_schedule = rule.daySchedule + day_schedule.setName("#{sch_ruleset.name} #{data_array[0]}") + data_array.delete_at(0) + data_array.delete_at(0) + data_array.delete_at(0) + data_array.each do |data_pair| + hour = data_pair[0].truncate + min = ((data_pair[0] - hour) * 60).to_i + day_schedule.addValue(OpenStudio::Time.new(0, hour, min, 0), data_pair[1]) + end + end + + result = sch_ruleset + return result + end # end of OsLib_Schedules.createComplexSchedule +end diff --git a/lib/measures/vr_fwith_doas/tests/AEDG_HVAC_GenericTestModel_0225_a.osm b/lib/measures/vr_fwith_doas/tests/AEDG_HVAC_GenericTestModel_0225_a.osm new file mode 100644 index 0000000..ea0e9c6 --- /dev/null +++ b/lib/measures/vr_fwith_doas/tests/AEDG_HVAC_GenericTestModel_0225_a.osm @@ -0,0 +1,16647 @@ + +OS:Version, + {8fe984d2-8942-49be-af2d-8f866e4b8405}, !- Handle + 1.2.5; !- Version Identifier + +OS:Schedule:Constant, + {011a98dd-8a58-4d3c-bb89-45238c4223fb}, !- Handle + Always On Discrete, !- Name + {950ed258-8ff3-4c0a-b895-f6e63be73e26}, !- Schedule Type Limits Name + 1; !- Value + +OS:ScheduleTypeLimits, + {950ed258-8ff3-4c0a-b895-f6e63be73e26}, !- Handle + Always On Discrete Limits, !- Name + 0, !- Lower Limit Value {BasedOnField A4} + 1, !- Upper Limit Value {BasedOnField A4} + Discrete, !- Numeric Type + Availability; !- Unit Type + +OS:Construction, + {c0f458f6-c6a5-4b88-a3a9-d68fae9265f0}, ! Handle + 000 AtticRoof ClimateZone 1-8, ! Name + {8f2a3d5a-9cc6-48e4-80db-4747319a30bd}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 2 + +OS:Construction, + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Handle + 000 ExtSlabCarpet 4in ClimateZone 1-8, ! Name + {7bae279f-a289-4694-ac26-5a556bd6d25d}, ! Surface Rendering Name + {e554b4d5-9806-4622-bd5d-cf19b067ac63}, ! Layer 1 + {3593aa29-509d-4541-bc90-55d6bc20a274}; ! Layer 2 + +OS:Construction, + {cc260c55-549f-40bf-9552-ff45cebcf4ef}, ! Handle + 000 ExtSlabCarpet 8in ClimateZone 1-8, ! Name + {d814d9b4-b7a3-4c3b-9046-8200081e8e9d}, ! Surface Rendering Name + {8afa97e2-cdf9-4b9b-b482-9f36b58e3df0}, ! Layer 1 + {3593aa29-509d-4541-bc90-55d6bc20a274}; ! Layer 2 + +OS:Construction, + {cec3b319-4e1f-4e65-8a4f-09e8102e76bb}, ! Handle + 000 ExtSlab 4in ClimateZone 1-8, ! Name + {7623b45d-1afd-4e50-a5d4-8973e0f50839}, ! Surface Rendering Name + {e554b4d5-9806-4622-bd5d-cf19b067ac63}; ! Layer 1 + +OS:Construction, + {8bcb610f-f05b-4a68-9328-56d717cec878}, ! Handle + 000 ExtSlab 8in ClimateZone 1-8, ! Name + {6bcc9c6f-d160-46e8-84fe-925510531a02}, ! Surface Rendering Name + {8afa97e2-cdf9-4b9b-b482-9f36b58e3df0}; ! Layer 1 + +OS:Construction, + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Handle + 000 Exterior Door, ! Name + {d3a0f803-0902-4452-8351-44cb8ee5fa20}, ! Surface Rendering Name + {1d218594-792b-458c-975b-cd7996781265}, ! Layer 1 + {b17db373-4e6e-4b7d-8516-c410024d24b1}; ! Layer 2 + +OS:Construction, + {29a08e4c-fddd-4b98-af7c-fcd287ed072e}, ! Handle + 000 Exterior Floor, ! Name + {cf93bb9a-a948-420e-8623-5dbd25e9063e}, ! Surface Rendering Name + {af5b7091-c3f8-43a2-8649-aea656cff32a}, ! Layer 1 + {67eea8d7-e2f1-42c7-bf4c-18e4532c3836}; ! Layer 2 + +OS:Construction, + {813415d1-f505-4e0c-953a-49af3e762d48}, ! Handle + 000 Exterior Roof, ! Name + {2f5b9735-dd16-4c9b-aa29-d2a0aa0d89a6}, ! Surface Rendering Name + {2be9922c-b8c7-43fc-b6fb-130ba70b23ad}, ! Layer 1 + {e5ef4582-1ed4-40f7-90f7-b948835c4680}, ! Layer 2 + {1f0b94e3-96e8-4759-9166-250e63a9c9c0}; ! Layer 3 + +OS:Construction, + {6c7472d3-1e4d-47b4-8afb-6733094ed5d7}, ! Handle + 000 Exterior Wall, ! Name + {61d98f2f-703b-40e0-a799-9de5b09dc770}, ! Surface Rendering Name + {d9860975-db36-40d7-b55a-f0e141209648}, ! Layer 1 + {67eea8d7-e2f1-42c7-bf4c-18e4532c3836}, ! Layer 2 + {af5b7091-c3f8-43a2-8649-aea656cff32a}, ! Layer 3 + {efc63ac2-25cf-4878-8100-f1e2d1f7e2f5}, ! Layer 4 + {4fe86c6d-f73e-4893-b73f-ddf808c38106}; ! Layer 5 + +OS:Construction, + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Handle + 000 Exterior Window, ! Name + {4e3d8c9a-e205-4b43-97a1-9ed42b4426ed}, ! Surface Rendering Name + {165e9f00-cc09-48c1-a4c2-8d6534c9a8c5}, ! Layer 1 + {aa07cd9d-3f86-4662-af87-f8a7f0077477}, ! Layer 2 + {165e9f00-cc09-48c1-a4c2-8d6534c9a8c5}; ! Layer 3 + +OS:Construction, + {305c1cce-364a-4113-af8d-9f7f6db58322}, ! Handle + 000 Interior Ceiling, ! Name + {dc72bc9f-18f7-440c-b7c2-fe001cfd1243}, ! Surface Rendering Name + {2be9922c-b8c7-43fc-b6fb-130ba70b23ad}, ! Layer 1 + {e5ef4582-1ed4-40f7-90f7-b948835c4680}, ! Layer 2 + {1f0b94e3-96e8-4759-9166-250e63a9c9c0}; ! Layer 3 + +OS:Construction, + {1ccc9476-7cb0-40f8-bffb-3d7f62f32c66}, ! Handle + 000 Interior Door, ! Name + {cd92f89b-4f39-4135-b4a2-17275db6be50}, ! Surface Rendering Name + {9e8fa22b-2f2c-4eb5-bc58-d1eb1139d1e2}; ! Layer 1 + +OS:Construction, + {07092fd3-9719-4a3a-851a-61e694c7b2e6}, ! Handle + 000 Interior Floor, ! Name + {77cbc9c8-66df-4480-8d8c-d5a4529f1e25}, ! Surface Rendering Name + {1f0b94e3-96e8-4759-9166-250e63a9c9c0}, ! Layer 1 + {e5ef4582-1ed4-40f7-90f7-b948835c4680}, ! Layer 2 + {2be9922c-b8c7-43fc-b6fb-130ba70b23ad}; ! Layer 3 + +OS:Construction, + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Handle + 000 Interior Partition, ! Name + {1210254c-7ac7-419d-a0ba-ce4fee5f6560}, ! Surface Rendering Name + {9e8fa22b-2f2c-4eb5-bc58-d1eb1139d1e2}; ! Layer 1 + +OS:Construction, + {e6ff48b6-cff2-4bb8-aed2-df3c527afd49}, ! Handle + 000 Interior Wall, ! Name + {813d283b-bc32-489c-b121-283a449f2f77}, ! Surface Rendering Name + {4fe86c6d-f73e-4893-b73f-ddf808c38106}, ! Layer 1 + {efc63ac2-25cf-4878-8100-f1e2d1f7e2f5}, ! Layer 2 + {4fe86c6d-f73e-4893-b73f-ddf808c38106}; ! Layer 3 + +OS:Construction, + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Handle + 000 Interior Window, ! Name + {22291e90-630d-428d-b67b-05ecd302f0f3}, ! Surface Rendering Name + {165e9f00-cc09-48c1-a4c2-8d6534c9a8c5}; ! Layer 1 + +OS:Construction, + {eb533a9c-a1c2-4578-a32e-5f8e4cc87afe}, ! Handle + ASHRAE 189.1-2009 AtticFloor ClimateZone 1-8, ! Name + {ae99e112-c3ee-41d0-8bef-ee0758bc55b8}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {f540da24-ef80-427d-ad40-f8507345b349}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {977371f4-689a-41c6-8642-8f68aff9537c}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 1, ! Name + {8a992e70-c129-403b-8b13-93c9738bc546}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {31d26021-19ad-4a4d-a584-52dc9eb24335}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {16ca3b6f-5a0a-498e-bd42-63229111ebd8}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 2-5, ! Name + {4976e445-718a-404e-a33d-90431b9e5d21}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {de583ecd-8cdf-4470-be9c-15b83f7ae0f4}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {a8e21ad8-1c9d-4d7f-8664-133b46f7a330}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 6, ! Name + {5b498fa7-bba3-4431-9656-a98e927ab5f9}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {e387406e-bc63-4782-8f37-c622cdefed1a}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {1e828946-1550-434e-9fff-71b43ebfbc38}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 7-8, ! Name + {2ec6f8f3-9084-459e-9f03-aabb569e8e19}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {049623b3-7aca-46bf-a5b2-aaa27e8be5f4}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {ee069e4b-9bda-4ed4-b3c7-8ebcd2e7f175}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 1, ! Name + {7844f75d-587b-41bf-899d-6a75b5418a2a}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {20c8cf47-d89d-4538-813c-3f6e8520475c}; ! Layer 2 + +OS:Construction, + {4bccd4be-3099-4217-b51f-b4af6cb4d169}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 2-5, ! Name + {759d4320-98ad-459d-928d-676d7094d432}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {28b93355-ffe3-4311-9fea-4b6673604390}; ! Layer 2 + +OS:Construction, + {04f25b5d-ff56-467e-8bed-9a4f96cb00aa}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 6, ! Name + {f3efafc1-09d6-4a78-a953-808a39c92dd3}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {c8ffc22b-d016-4ebe-958c-5d6d2e47d0eb}; ! Layer 2 + +OS:Construction, + {29b73155-292d-4557-984c-55329aa1f4c8}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 7-8, ! Name + {8f58adca-a5ac-4d96-b313-ee029c51cbf9}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {3442ccdb-832a-4e4b-a578-7f9ac6908079}; ! Layer 2 + +OS:Construction, + {a50f5a7c-3892-4808-b4c6-0762dabbc4a2}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 1, ! Name + {0dc90870-35ba-4503-ab69-d1203b74ff16}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {a80d3ead-7a84-4c85-b4aa-8aa340918da0}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {9bd5244e-fc36-47e1-a96a-4f936c33a60c}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 2, ! Name + {ba034033-11ee-4894-856c-32d268c2fe48}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {4c012a31-4819-43e8-9e89-aaa84f968cdf}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {f22c7e8d-43ea-4428-9003-38797727c2d0}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 3, ! Name + {d2070426-24f1-4339-a28b-b7c43f5cb0e8}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {344c86df-4ad8-4b79-99c4-a9a82b13f479}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {a12eca10-ec96-4777-8238-7b52f59cd6a2}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 4, ! Name + {5a0f2c49-d318-4bc8-9c7c-b586e648bf1c}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {d42fdb74-e2b1-4c2c-9c0a-ee6bd2f85113}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {2f8e1f0c-04ad-490d-81f5-edf9c9d38d27}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 5, ! Name + {ae945c74-2815-4e9e-a0ba-0616bce0578e}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {8c2dbf29-4947-44a4-a5a8-739f38ac8450}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {74e7d05f-0ce7-4760-9e88-34615d70d3c3}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 6, ! Name + {a7472de2-df9b-444c-ba18-f44613e6983a}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {8b9d564a-0e35-4e32-b53c-e53afd802a3e}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {fe0a828c-db74-442c-a75d-f03952180ea3}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 7-8, ! Name + {f93eb886-3096-4dde-9fc7-fa3d289767ff}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {a19e4898-5fe5-480b-a8a4-7c29b605dcd3}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {8f20c459-4f3c-4481-bf89-78af2c7a0da0}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 1, ! Name + {2bb65d01-dad4-444d-b7b0-4816799d1144}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {4c012a31-4819-43e8-9e89-aaa84f968cdf}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {458b9490-8047-4b34-858f-d861ba50835e}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 2, ! Name + {55f61a60-7f16-473d-a185-fd9e8e250c06}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {344c86df-4ad8-4b79-99c4-a9a82b13f479}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {b17b8317-b420-44e0-b1f7-059c537ac7ce}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 3, ! Name + {81ca4376-a508-4c8c-847d-d70382485466}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {d42fdb74-e2b1-4c2c-9c0a-ee6bd2f85113}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {7aee0b96-f538-46fa-88fd-2ec5df095496}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 4, ! Name + {fad3dbc6-9b8a-40ce-8081-f814e16f28e3}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {8c2dbf29-4947-44a4-a5a8-739f38ac8450}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {a821dffe-af6c-4e47-b7a1-1c40d9aa6083}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 5, ! Name + {7486c56c-a900-403f-89a3-1e4eabfa8124}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {8b9d564a-0e35-4e32-b53c-e53afd802a3e}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {6967c5c6-c589-4c96-9482-bd2f8f0eb29f}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 6, ! Name + {23e60eec-9d05-4168-afb0-bc3cfa277da8}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {a19e4898-5fe5-480b-a8a4-7c29b605dcd3}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {f8071f3f-4038-4a14-96cd-c9195668d990}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 7, ! Name + {d6a7b659-e448-487b-aadd-160a3d87f6b1}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {a19e4898-5fe5-480b-a8a4-7c29b605dcd3}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {87d92f11-1a25-488c-b858-1361fdba93b0}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 8, ! Name + {8e7d04ac-0819-4907-941e-c1fa4494a8c6}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {85a770e5-d485-45d1-b263-003ded55d609}, ! Layer 2 + {8ff806a1-7f9c-44d1-9fd8-10fab2b3d86b}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {3fe162b3-9c72-4abe-8d2d-09d7025a0c61}, ! Handle + ASHRAE 189.1-2009 ExtWall Metal ClimateZone 1-3, ! Name + {5400731e-e096-4b6a-a3fa-9079d02cc13c}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {76e750a0-a7e3-47bd-80ae-a931a7bf930f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {56a6f610-77da-4bec-8c60-304c5f29193a}, ! Handle + ASHRAE 189.1-2009 ExtWall Metal ClimateZone 4-8, ! Name + {7a9f7259-6873-4a3a-8c3b-8d22d3501db9}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {49c4b265-13e9-4279-82a4-ef3c5400eb76}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {45f51e73-925b-410b-ac89-a0e3467d0771}, ! Handle + ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 1-3, ! Name + {7ed5eb98-f550-40f4-b8e9-c44844f1f7d0}, ! Surface Rendering Name + {ddfb04c9-cb49-421c-b929-8922fd84bc14}, ! Layer 1 + {8d3443dd-9a8d-4e06-a8a5-ad2d9679b841}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ce0f71d7-73c2-4a1e-b3d3-0e5440ca5296}, ! Handle + ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 4-8, ! Name + {aa2fa94a-f5ed-4039-903b-f4a0811268a0}, ! Surface Rendering Name + {ddfb04c9-cb49-421c-b929-8922fd84bc14}, ! Layer 1 + {9701a490-5af6-40fb-8bb6-2cd3dfab8fad}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {9d53e69c-861e-47b2-8469-a95979596900}, ! Handle + ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 1-4, ! Name + {5f2b0115-75bf-4e9f-9d14-c1b9396f6261}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {0e65f2b1-8ce4-4b8f-8150-be67a72396a0}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {36fa2ae1-6cc9-4493-bae7-c28762868b03}, ! Handle + ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 5, ! Name + {5cd2f84d-2dfd-4573-bfc9-b2a77d0616d8}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {fccd3bb6-cd7e-477f-bd00-e4bf7020e5b6}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {4d96b49c-5258-4da1-9383-5b3ab2a2d46f}, ! Handle + ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 6-8, ! Name + {5dad2af1-dd1d-4b58-bc98-ba22c9f181f9}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {41c10ec3-3e7e-4c92-9de3-4a91a6aeadec}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {c8099665-7d3b-4d7b-8d85-3f1a1b6e9c57}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 1, ! Name + {ab97b6e5-3903-43b9-aad1-d106c7abf6ef}, ! Surface Rendering Name + {405af381-1ff5-45d2-9bca-871321956609}; ! Layer 1 + +OS:Construction, + {425b7cb1-272c-4e02-a98f-161b07082b19}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 2, ! Name + {4ea48022-bbec-4218-b258-cf15497d76d7}, ! Surface Rendering Name + {2cf9ce11-b74c-4b51-ab39-154dcc9d4771}; ! Layer 1 + +OS:Construction, + {246363fd-0aca-4c06-9463-e96291924508}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 3, ! Name + {b4437797-7cef-4ceb-96d1-0570c6b264ae}, ! Surface Rendering Name + {00d2aeb6-20c5-4970-93a6-6d60353270c7}; ! Layer 1 + +OS:Construction, + {cb8c7d4e-9646-4d49-ab15-492be6063a6f}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 4-5, ! Name + {1da1acaa-abf2-4433-a050-2a2cbf45442b}, ! Surface Rendering Name + {6e5b7a44-b8f1-463f-b75f-62bc6a4c0ede}; ! Layer 1 + +OS:Construction, + {147eb040-250b-448b-8759-b552add3f4f5}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 6, ! Name + {56908274-fc3a-4d3d-bf2f-aaca6a9f96d2}, ! Surface Rendering Name + {70760773-5fc1-4d08-8eef-ae2fbabb3d32}; ! Layer 1 + +OS:Construction, + {a3f376a2-bdfc-4315-af96-7011df2f3924}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 7-8, ! Name + {4812629c-f75b-422f-b138-bd798604eb7b}, ! Surface Rendering Name + {d3377fb1-b38b-4635-aa5f-f18ed80acf54}; ! Layer 1 + +OS:Construction, + {10b6d6d6-792e-4e82-9d4c-9a1300540745}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone alt-res 4-5, ! Name + {617f0af7-5f1d-48cf-9960-70851e9284f2}, ! Surface Rendering Name + {70760773-5fc1-4d08-8eef-ae2fbabb3d32}; ! Layer 1 + +OS:Construction, + {f96d6ecc-4d11-4dcc-995e-cb09c19e3a31}, ! Handle + ASHRAE 90.1-2004 AtticFloor ClimateZone 1-5, ! Name + {ae9fc8d2-7a15-4f5a-8c67-4583e48bcf73}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {b4b47bd6-95ee-47ee-ab56-bc441826b03c}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {7a9b0bda-5064-40f2-a9af-57bcb3732523}, ! Handle + ASHRAE 90.1-2004 AtticFloor ClimateZone 6-8, ! Name + {4f734284-54dd-47cf-88b4-16c51190397b}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {3349792b-38e7-4fa2-a666-a7d07edf14ba}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {86115717-6ac2-43f6-a75f-6ada902eb588}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 1-4, ! Name + {e921346c-db99-4133-9067-806085ec979b}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {f84c6785-3d37-4c66-99a9-3bff4334838e}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {fd03cbb3-1345-4e42-9a8c-589aaa532ee6}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 5-6, ! Name + {8a48315d-f678-4301-8484-4113d3b5bf9e}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {7af1df9e-4a42-4957-8b56-d9d80e015351}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {a5e66d6f-9309-4818-83a0-1229969c6918}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 7, ! Name + {8be96dd4-a335-40d8-8b25-f0c43816f7e8}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {f84c6785-3d37-4c66-99a9-3bff4334838e}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {60b9b486-9fea-4fa5-ba03-7a62df6530e1}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 8, ! Name + {fdbdd6c1-0a2f-43b2-a068-d0e41631ea7d}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {5dc32f3b-fcea-4d2a-96ce-b840610baf65}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {2d051e52-346a-4aec-aec7-d2892f57fc9e}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 1, ! Name + {0f837524-9b4a-4547-bef4-b29285d9d3c8}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}; ! Layer 1 + +OS:Construction, + {ad5c12d5-e522-470c-ba46-04891eb1b756}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 2, ! Name + {feaeecac-56e4-4538-b080-9a2a15914e6d}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {44f248c4-37da-42ad-8773-1bf3e9ab646b}; ! Layer 2 + +OS:Construction, + {73c91f6b-7559-469e-b824-6bb0f4711c71}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 3-4, ! Name + {66a12368-1a32-4d8b-b5e7-6ec79de79af0}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {47438003-dd17-400b-9a25-727cda295f7c}; ! Layer 2 + +OS:Construction, + {5b2cfdb5-4ff8-4397-9dc9-0deb0020e764}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 5-6, ! Name + {c7631f0a-0e54-4165-b863-813007dbc8c7}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {2ecd27a2-6bf0-4359-9c23-e67031970553}; ! Layer 2 + +OS:Construction, + {ff84e539-03b3-48d8-aee7-376fb6d1565f}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 7, ! Name + {114de8bc-a767-4ffe-8208-1e3615aa9fc0}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {47438003-dd17-400b-9a25-727cda295f7c}; ! Layer 2 + +OS:Construction, + {05f078ce-d548-4971-9732-f44885398a09}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 8, ! Name + {c2ac665d-dcc6-4355-b799-bf3c1c0fcc09}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {8b3150a6-4f07-40e2-ba11-dce1bf83169b}; ! Layer 2 + +OS:Construction, + {80767779-8344-43f0-ba90-ed9029bc6e27}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 1-2, ! Name + {45e1dcc5-591f-4946-bbf5-05607f4244f2}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {eaf52fe1-7221-4d0b-9d42-f35d07576843}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 3-4, ! Name + {7d7e2bfd-f9a7-4d13-9ae4-80c00bf7a742}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {d901e9ce-e0ad-4727-a22e-c98d3ff2ad3d}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {6ed9efd0-1fc6-4d54-864f-2073fca44a42}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 5, ! Name + {b92b35cb-01e6-4ab9-9655-82643f140b76}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {3683b4f9-ea08-4624-9f6d-b52efc0262d0}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {42e42dfb-b154-45f0-a7cc-2d45bb907cc0}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 6, ! Name + {88bab52e-b838-4a40-870c-f7db3fb30e6e}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {18de8fd5-ce43-4dfb-86a4-7ae97ca77b36}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {c0067702-8df2-47a5-a6d4-031ac377067a}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 7, ! Name + {fbd85bef-0824-4ac4-bcb7-023d2b668fd5}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {2a062da2-674a-4ec6-bed2-7b1317449d3a}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {6ac4ee74-30db-4ce6-8a40-0141bff6ec01}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 8, ! Name + {40f3bfef-bf87-49ab-8404-488a213a36c4}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {c04e605c-13b9-4d84-8928-6246e812f5e6}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {6f584301-e880-42c8-8677-a4aa51c2dffa}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 1-2, ! Name + {e93362f6-cd75-465d-badb-8772a9a878dc}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {d901e9ce-e0ad-4727-a22e-c98d3ff2ad3d}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {bef36c22-102a-44dc-950b-77cdf59fa055}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 3, ! Name + {668374ea-48a1-404b-b05e-6b526689ec1d}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {3683b4f9-ea08-4624-9f6d-b52efc0262d0}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {40b9761a-604e-44e5-89fc-b968926485bc}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 4, ! Name + {f8b15c3c-f345-4aff-ae1c-b30291af6ae1}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {18de8fd5-ce43-4dfb-86a4-7ae97ca77b36}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {9571c8d7-72ac-4034-9e91-7b4b350d835f}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 5-6, ! Name + {ab8dbd3a-a4c1-43cd-9ab7-6e6ba514b9e8}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {2a062da2-674a-4ec6-bed2-7b1317449d3a}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {d9730ea2-2791-4821-9e8d-96e3204035e2}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 7, ! Name + {75dcefd3-517a-4efa-ba1a-70a1b1aca1c0}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {c04e605c-13b9-4d84-8928-6246e812f5e6}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {8247d411-7552-403d-99ea-2ad0ae6df19d}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 8, ! Name + {19194a1d-e464-4609-a589-e7a2a05c0cfe}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {e7e84922-5a9e-48a5-a9e5-afd9baa53d1d}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {27e1a3aa-64e1-4f56-90cb-cf39b41532f9}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 1, ! Name + {1421f1b7-085d-4154-a2b6-fac857076801}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 2 + +OS:Construction, + {96d46661-9340-4023-874e-0c4d5d2e3914}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 2-3, ! Name + {5f58ba6c-8132-413b-91d3-35d370a9253c}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {83bbe90d-602f-4224-9893-83136b51bf4d}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {1c35925d-2192-410f-b839-92dc55b8ada6}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 4, ! Name + {70350214-8af5-4d2c-a46d-108f5f9d2f92}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {fb697fab-8967-4d6e-80b1-74d1e710f97a}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {239a9a4a-3dff-43b5-ada6-6642b855fa49}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 5, ! Name + {9c054d76-e292-4f75-95ac-375b2276806a}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {a9ff92d5-25f5-4f59-a507-2af6536d5ebc}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {48539533-a935-43c1-9c54-0b70fb335385}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 6-8, ! Name + {f8a91a38-ff32-45da-b4cd-cee4a1bc3ba2}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {3d460e61-5e0a-40f6-b397-bf8990c81085}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {69c0432a-a291-42fe-967d-79fb70e6f68b}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 1-4, ! Name + {7f007c93-c5ee-439c-bc52-21c8f948c4d2}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {5345e826-350b-4b9e-b3a0-687082089267}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {8dbd7e3e-62fc-4d8b-81eb-32251586ffe4}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 5-6, ! Name + {b455493b-cf36-496d-b6c8-16c0685575ee}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {d5a9b5b8-e008-4a7a-925f-948053eb59b2}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {30ac70f8-4997-4d5e-b52d-01267d095c8f}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 7-8, ! Name + {833e8d8b-56c8-4ea7-adcf-a5adf38b6904}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {8a2cd04f-bd95-490d-82e2-1b8453cca103}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {effb323d-16bd-44d3-824d-851a5d37ffc7}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 3, ! Name + {3b4a8573-972f-42ed-a36d-a53877b7383d}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {d5a9b5b8-e008-4a7a-925f-948053eb59b2}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {1999a5ef-7bc4-4cc4-82e3-d1bb213de638}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 4-6, ! Name + {965c8993-83e0-46b1-be21-593be34abb11}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {8a2cd04f-bd95-490d-82e2-1b8453cca103}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {535eb3f8-9e5d-4a7a-bde5-6bab4c67b704}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 8, ! Name + {238ccbec-0407-4579-a404-1cacef82238d}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {a6d71516-e3d6-4a49-a581-874fe66ca8f3}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {257e2d55-24ce-4a1c-b2c1-b4d2d70a9db5}, ! Handle + ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 1-7, ! Name + {4dca5ed6-d704-4334-8ec6-653dbff131e7}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {3ae6885a-f3c0-45a9-afad-82e1b9ba4d6e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {e31e9a59-5f94-426d-8967-d1446880e94c}, ! Handle + ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 8, ! Name + {ad1987ec-f445-4571-95f5-f5914197a980}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {fb85a288-c42b-428b-9ea4-fd75691f1b8c}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {5d51a133-05c5-4228-ba67-3c4ba4d0bb27}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 1-2, ! Name + {629f5df4-c7b6-4ac0-afa1-7feb3878178c}, ! Surface Rendering Name + {792bbea6-984c-4239-a3a1-502aeb832ac7}; ! Layer 1 + +OS:Construction, + {c9df6abf-d698-4097-8afa-8a4539b85d79}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 3a-3b, ! Name + {c77e95a2-1007-44af-a260-4836538b6f58}, ! Surface Rendering Name + {e0fc2e96-467e-44c2-bbc6-e0e0d6f74bdc}; ! Layer 1 + +OS:Construction, + {12ddfc25-687a-464d-8793-d0729f049b82}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 3c, ! Name + {cc0c385b-1564-41c5-b1dc-0d539a582989}, ! Surface Rendering Name + {54ad2b47-0435-473d-9508-37d1eb940eb5}; ! Layer 1 + +OS:Construction, + {b46f753c-f0ce-4a6e-a6cb-0112ac1afdaa}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 4-6, ! Name + {c8900b40-3cca-4149-a194-187407b9b7ea}, ! Surface Rendering Name + {704ddf45-6d9d-4d66-82bf-948789672bc7}; ! Layer 1 + +OS:Construction, + {603cae7f-41c1-4140-888a-0d6a375e14da}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 7, ! Name + {6278f54e-a787-4fdb-8650-f9cc51404402}, ! Surface Rendering Name + {2369133b-4af8-4174-a00e-a29539b38735}; ! Layer 1 + +OS:Construction, + {e6837572-78f1-4a8e-b3ba-2276c336b19e}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 8, ! Name + {a1483ca7-7c5e-44fa-adbf-dd8e783f3844}, ! Surface Rendering Name + {7223656d-4d0c-438a-95c5-483f090f2844}; ! Layer 1 + +OS:Construction, + {9f8e38ee-6a4b-4b02-bbe9-0f13537f36e7}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 3c, ! Name + {12b257fc-5699-4129-b055-36ad60b34592}, ! Surface Rendering Name + {ee541d06-6fcb-44a7-b092-f03bae0a8b53}; ! Layer 1 + +OS:Construction, + {6bb414d6-7c7e-4447-a983-6ada144948a1}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 4-6, ! Name + {84060026-cb34-4558-9975-d20233f3a9c2}, ! Surface Rendering Name + {dc8a6b59-d6c6-422d-942a-229e57751214}; ! Layer 1 + +OS:Construction, + {3b85dbbc-126d-4364-93e7-cb2a2a879d6c}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 7, ! Name + {4d8ec304-f18e-4355-ad0a-14962f861b52}, ! Surface Rendering Name + {e4e66954-ddba-476c-a5d2-9cbb2c32ebb5}; ! Layer 1 + +OS:Construction, + {5252e579-4b1a-4331-be35-2fed98b1e9ad}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 8, ! Name + {7656c713-6331-42bd-9446-d9e0d6291682}, ! Surface Rendering Name + {7b6a48a2-9018-430e-89fb-9c974d092c6d}; ! Layer 1 + +OS:Construction, + {e5d7ba85-16fd-4d7c-aab4-6e8d7fb54c0e}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resA 3a-3b, ! Name + {44fa9f76-5af4-4d45-938c-6a1e36b02fd1}, ! Surface Rendering Name + {dc8a6b59-d6c6-422d-942a-229e57751214}; ! Layer 1 + +OS:Construction, + {8f92085f-62b2-4854-bd60-d3d23c53fde6}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resH 3a-3b, ! Name + {5b46c887-c1c9-4dd4-80fe-aed1721c82dd}, ! Surface Rendering Name + {704ddf45-6d9d-4d66-82bf-948789672bc7}; ! Layer 1 + +OS:Construction, + {b82af5d4-7bb2-4a18-be21-7556f3807c99}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-ware 1-8, ! Name + {613e7502-cbd5-4212-bc61-c965f18f8695}, ! Surface Rendering Name + {5bf309c9-492b-42b2-9717-17726104670a}; ! Layer 1 + +OS:Construction, + {c57e29cf-23f8-4daf-990d-c7815b26ae9b}, ! Handle + Air Wall, ! Name + {5ba0efe6-6ab9-4236-9afd-7dc2e63a5a9d}, ! Surface Rendering Name + {d796cb9d-bda0-4151-b548-1464bc99e97b}; ! Layer 1 + +OS:Construction, + {c1b1be10-71b8-44a0-b417-8f7b85a92d5b}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 1, ! Name + {1ea15f5f-b5b2-42e8-a49b-1905ed90ecea}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {94733413-a109-4816-8e36-d55a91398732}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {811ac54a-5fcc-48ca-9724-f8d48ba93034}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2a, ! Name + {55e2f197-2d3b-4660-810f-1496f534fd7a}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {f63a12b5-5b3b-4431-a7d1-6102de327439}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {135c35c3-1f21-4cd1-925e-c78a105e1881}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2b, ! Name + {3b16a88b-7dcc-431e-bb93-56c33cc3aa1f}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {3787390a-031c-4c3c-a80b-03e435f686c6}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ff4aaa21-4dd0-4819-9f0d-4468b3d817ba}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3a, ! Name + {36917857-c616-4166-80b0-65f5b5765603}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {447c32b2-6b85-4e77-b4c5-b8f411adeb04}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {b4b1f792-3d6c-4ebe-a78c-e71df7473302}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAS, ! Name + {b129c33b-8802-4959-a326-1581617d12ea}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {16b6d464-339f-4e73-871a-b446bcb1856a}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {b3375f02-5597-419f-9b42-9b8fdbc909d8}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAX, ! Name + {fdfa413d-b28d-4613-9d45-4b319cc1db5b}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {c20942b9-37de-435d-86ad-c3fc584ce8e0}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {e9be867f-16c9-4f9f-86f0-d54d9b679d89}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3c, ! Name + {ff259fd3-df02-485c-bd72-fe46a3b2226a}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {40b59514-ff72-4c51-84fb-b7736f31b538}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {aac7b317-7fc4-4430-a24c-dcf307685db7}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4a, ! Name + {477ce77d-fbc0-45e4-8d67-3ac03f9b80df}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {9f389579-0d9c-495f-8ae3-382eaac3cd7f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {6f96a8be-3be0-4dbc-82dc-4fcd870db6e3}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4b, ! Name + {9bd499c5-ceeb-4797-83f6-c89184a19088}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {77b26504-2009-4b81-bdad-8f821d1a00f9}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {77e8e331-c395-473c-8b81-b69cfc2dabbd}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4c, ! Name + {ce6473cd-8ae9-4a12-8f02-f456e5b7f2a0}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {20e542e2-9a72-4e02-a2e0-4c2493ad98ee}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {a0631693-d632-4ca8-8705-3ccc8f25d399}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5a, ! Name + {5598edc1-476a-40c3-8e5c-00ca46d81d4c}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {395a9280-7ad1-4a3d-886e-3bdc54706855}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {607b0be9-0b70-4647-9ab4-61cfb10cc341}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5b, ! Name + {8220a842-da79-4147-8b40-fd5210792e47}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {1f77fbf0-7ad4-4450-9382-1eb1554a444c}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {692255cd-a647-4ff2-9092-f9e14e2ca4ee}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6a, ! Name + {d004aa0b-c5c2-4c0c-87c4-e8620bad2b24}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {14f95637-0415-4665-a114-78d9a1e5550f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {1ed460e0-bdb3-4a37-852b-f1588b630f19}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6b, ! Name + {bf0a6d10-89b8-460c-b114-39a580667f57}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {0dde938b-bdaf-489d-ae05-9841769cc73e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {0930bf2f-6299-433f-bd0b-1a65eb3d3861}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 7, ! Name + {ef2a6cde-cc50-4811-a45f-c8b965e59350}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {55e7acf8-273f-4291-abd7-a194649038aa}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ec3a08d9-217b-4001-b2bd-305f3eb7e970}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 8, ! Name + {432721f8-b1c5-4701-a1ad-5bb95e544da3}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {0b38724a-9bfa-4d69-842f-7080bc1fb7ba}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {8c38de40-9814-4b87-ab70-aa6d5de8b222}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 1, ! Name + {cf554a3e-9e5e-4fc5-9c96-069315c2d422}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {f59f2aff-3f1b-49f8-872e-5f4a23ba58cb}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {17567edd-77c5-4970-a431-d588b38999be}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 2a, ! Name + {dc9d2133-44ed-4d8e-88e4-a721214d3b02}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {76b8044d-c15f-4d39-923b-cd18d50eaf30}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {3cafeaf1-daf6-4e03-8abf-9552f68c2653}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 2b, ! Name + {42e77966-533f-495a-b709-e0315e14e134}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {a1b53888-4d6a-4a54-afad-4bc86bda8dd5}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {67cdd7ff-a241-4ebb-ade0-a0329dcba876}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3a, ! Name + {8630f26b-8dc1-4e95-a2df-98e5ba119c28}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {55ab0a86-0a8d-4a52-a736-749d935dae58}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {5929a8a2-0840-4121-a1a0-a72eedb0ad4d}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAS, ! Name + {8c1b81ea-3c84-49db-9ed8-6a1f322e20ad}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {0adc43b2-4e37-43c1-9970-77d58c387ef0}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {91138a30-0037-49e7-ab7a-0b60734dcd50}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAX, ! Name + {8178e09e-1125-4ff7-be1a-df85b0d04725}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {aed17da6-63d5-4b8f-8f07-4b30d5fb9ae2}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {e8fc7e37-3932-4e54-baf4-acdac5b64c6a}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3c, ! Name + {921bce36-0107-45c0-b84c-3654c577e1c8}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {db899a26-c96b-4d3c-84bc-a9a1982d3f33}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {b3945bd3-5dd7-49f6-be6f-6e451ec91d32}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 4a, ! Name + {a5d20a29-7d22-4988-bb68-d1b6748c9142}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {d0695b3f-29e3-4841-9f7d-5cc390cb67bd}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {251c04df-5ae8-4673-a3d4-e806b66fe9be}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 4b, ! Name + {1bea94f5-f68d-4fe6-8ab2-3f77b4df5f7d}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {b6fd9dc9-1b4b-4590-b2d9-d6731170144a}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {c54b5d4a-4ddd-4db8-abb8-dbc0dd03f837}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 4c, ! Name + {b6123c0e-9bf6-44ac-bbef-1dbb222e6477}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {a22b9ed6-b9d7-48c5-a520-71b717dc72a3}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {7fa202b0-f318-461c-8eae-a5b2d1eb84ae}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 5a, ! Name + {1fedafc0-0210-4ab4-bc75-3afc67aa0800}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {f7b481d5-1ff4-4ffe-b67a-5a9c9ffdf008}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {1dd518f9-eb33-4254-aa76-a6552d3cedc9}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 5b, ! Name + {90d7a4ae-1f56-457d-95f2-442e404a6543}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {8d7490dd-b2ea-421c-8534-93b3aad23bd9}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {168f3bc4-5c52-4da9-b05c-03145da6c1c6}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 6a, ! Name + {ccdf2358-ed8b-469f-a1c7-e5bc4e3a18d5}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {7e92fb7d-7bd5-4a94-989d-3d9605ee925b}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {4e060302-cef7-4ff2-b3a2-81eeb49872a4}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 6b, ! Name + {e723f255-567a-4ef1-9b27-c3b9ec494d1f}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {260dfcc8-83c0-4f5a-958d-c86fdd1d2a53}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {695cd322-1ca8-4080-90aa-8a54c6dc8655}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 7, ! Name + {ea9c9548-7da8-426c-897d-37bf3e7385f7}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {d1561fe6-9c80-4652-907c-f967c00a8c8d}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {91f7fb90-098f-4291-9617-60d5557186e7}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 8, ! Name + {de92eb61-ff45-44e4-a2f4-f93b764afe48}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {3d3a5ac2-7504-478f-b597-66c9816a7a97}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {f4980f58-5f50-4aa1-8853-f6d245107181}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 1, ! Name + {492a4de4-e575-48ac-ade9-0cf4005adc5f}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {d37b5d62-6f0d-4c6b-95d6-8b13b63732fe}; ! Layer 2 + +OS:Construction, + {a21fb0a0-7d80-4ca5-bacf-c0253a6b4267}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 2a, ! Name + {2327d734-1e67-4652-9cce-4100797c23a8}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {e565690a-2b79-45d8-a9fb-f4b7253ac35c}; ! Layer 2 + +OS:Construction, + {447ba9a8-9980-487f-9367-025bce148d55}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 2b, ! Name + {6ef700fa-93c6-4511-8495-83e68d0f86f0}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {5a58670b-6bb1-47cb-8f75-a6fc524bcfcd}; ! Layer 2 + +OS:Construction, + {b2ced33d-8697-4e42-8863-48ffa456eb89}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3a, ! Name + {f51635cd-cf60-43e9-ad78-127eb55a6663}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {31d99a9d-b507-4dd2-afb5-f14c50c1a4e7}; ! Layer 2 + +OS:Construction, + {01f79a15-bb2d-476f-8c83-1e1f471cdda1}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAS, ! Name + {a91a7741-2c0a-4139-970c-e7db29d23e39}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {30c49646-b142-424e-bdf9-4847e11981c8}; ! Layer 2 + +OS:Construction, + {61bc0202-22fc-4f89-8fa1-4e984a7430ad}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAX, ! Name + {623de263-c332-40bf-8821-350312e21d44}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {8c500a1c-ebaa-4936-b9c8-b35ca266df1a}; ! Layer 2 + +OS:Construction, + {83558379-a98d-44d2-8c99-8579e3840e1c}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3c, ! Name + {2f15df8d-e087-423f-8f11-2a517ce5f91f}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {377ea17b-1b3e-40e1-a032-5869f41470d7}; ! Layer 2 + +OS:Construction, + {889ce61b-6005-47aa-8433-821eead0c54c}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 4a, ! Name + {286a205e-4076-41aa-9f76-c437f5698221}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {35804027-50dc-4b81-bdb7-41dd81747140}; ! Layer 2 + +OS:Construction, + {3533dffd-2768-4db1-991c-918e77fd8306}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 4b, ! Name + {d85db1e1-8776-4660-896c-3889854d5f63}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {668ad162-42e4-413c-8f03-8d6503bcf245}; ! Layer 2 + +OS:Construction, + {2bc83eed-60f9-4d39-b8d9-c4a4f984fb6f}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 4c, ! Name + {3a1cd9d6-47bd-4e7d-88c8-f12fc568049f}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {a191c6ee-210c-4493-abe7-862988743a1c}; ! Layer 2 + +OS:Construction, + {c74dd07d-4d3b-4ad1-bd16-7aee4834b684}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 5a, ! Name + {a227e192-0dd6-43b6-914f-3bcb9ead8e1b}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {625e7420-3c4d-435c-b577-b2353eddaf2b}; ! Layer 2 + +OS:Construction, + {088a1489-6b18-45d2-9667-c70006b181d0}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 5b, ! Name + {312924a5-6bc0-4977-9ba5-793ff348086a}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {625e7420-3c4d-435c-b577-b2353eddaf2b}; ! Layer 2 + +OS:Construction, + {689b46bd-3ac6-40d8-bc0e-5afdfa429677}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 6a, ! Name + {c294e7a9-7319-4460-95a5-efc70265dca1}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {85c38964-7e59-4ea0-9adb-34f86b553691}; ! Layer 2 + +OS:Construction, + {7d8f711b-99f9-4331-a254-b5cabe5d975f}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 6b, ! Name + {088dfb31-b9b3-4beb-a55e-3e229b9e2f47}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {f96415b5-333d-4546-8f16-551de3d9d7c5}; ! Layer 2 + +OS:Construction, + {fb80be5b-83d7-492c-a5f3-6f77ba442887}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 7, ! Name + {25127e3f-fb36-492a-b0fe-bfea9a34affa}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {5247aa24-ee4a-4a26-af3c-2599ac4b156a}; ! Layer 2 + +OS:Construction, + {cda8999b-60e0-45b8-9461-79c7bd58110e}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 8, ! Name + {b185668d-675a-4e4d-8f3a-b319993e8168}, ! Surface Rendering Name + {fc972994-dd0e-4437-a233-1355903fd496}, ! Layer 1 + {e2d23c0b-fdc5-4431-8ec6-81e16606e41b}; ! Layer 2 + +OS:Construction, + {128eed89-ac7f-4ea9-8655-951d978393e3}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 1, ! Name + {a77f891d-c3b6-48db-a433-d02266201ea8}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {5e3ad40e-caa7-4b9a-93a2-943d6958eae1}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 2a, ! Name + {8fd52a38-0313-4364-9fd6-83cd6842396f}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {c8cff21b-3056-48b8-acdf-306713dbb3e6}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {0d3b2d09-4cab-42bf-b0e7-adb64958ca41}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 2b, ! Name + {f823ba96-165f-4004-b24c-5f2aeca04592}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {b571e075-2e93-4678-bd9a-bfd582892ee1}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {b519d9e4-e4d5-4834-8a4f-bb2e71b55024}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3a, ! Name + {f45a0471-ad9c-45f4-a3ce-5ffdb58599a0}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {87c45b13-cb93-41e8-b901-54e0e37d9881}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {620c5cfe-3738-4e82-ba66-61a367090aa9}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAS, ! Name + {fdc38ffe-1b31-4547-87d0-b085a85adc9d}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {76f4967a-9e69-4863-9e62-da33308b11d8}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAX, ! Name + {46963e37-2a4a-4835-a943-75676cdb00e8}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {87c45b13-cb93-41e8-b901-54e0e37d9881}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {1f0f76a1-c10c-4cfe-8952-4a96ea14becd}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3c, ! Name + {97934706-5055-4e12-80ac-2feb65c370a9}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {bb4a404a-0045-487d-ad9f-841a197cb1ad}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 4a, ! Name + {b1cb7df4-4ae2-4272-bf42-4ab46331fedd}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {c7e608d4-f8ed-44ff-a6a8-4bad9d84d75d}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {d18fa442-eaf0-4b65-b331-b973de368255}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 4b, ! Name + {8c0507c6-8b4d-446d-a39e-c16e2275750f}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {870446bd-828d-40cd-ad0e-52d13acd500f}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {867bb075-900c-4906-b02c-aae6fed93495}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 4c-5a, ! Name + {c1218ae6-7af3-406b-b274-6c54a2d4b239}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {b9b5dafb-34a2-4832-8f15-0e9b1a6ef48d}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {8094e395-b30c-4371-a6fd-ad1c68a3cd7d}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 5b, ! Name + {99bec082-f288-4a60-97fd-2e830b9ed320}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {a81edab3-3b35-48ed-9220-a80685aa3555}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {4f741dee-bf03-4507-b526-c4c2cf4f1438}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 6a, ! Name + {afa94f17-bb4d-408f-b89e-731e4dece400}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {e7e84922-5a9e-48a5-a9e5-afd9baa53d1d}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {114c30f7-36f4-4b8b-b7bf-07c684e1fd04}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 6b, ! Name + {067e7bc5-142d-4b8a-8dd8-c007c2801848}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {1a649724-b88f-49ac-8cff-30bb11629143}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {59c4a6b7-0b1e-46ff-b4fb-985286abb5ed}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 7, ! Name + {e5e2c780-290a-465f-abf7-2a13e3b97d04}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {5c087e08-0436-490a-b337-e1012a55954e}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {a4ac64f8-93da-4e7c-83aa-78616214efc5}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 8, ! Name + {38a8dc45-91cf-4c01-9a24-c255ccf39886}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {d6e8838b-7907-47eb-a3c1-8927c163415c}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {342ad891-bb6d-4673-baa2-efd94d3f0b74}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 1, ! Name + {88c0de18-4d66-468e-b76c-b0982b6322e1}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 2 + +OS:Construction, + {6bd943a2-4f28-4f1a-adc8-c2334b92591c}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 2a, ! Name + {ba4c4a2e-850a-4887-87ea-61eebfc86e5f}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {d6141305-51b8-4323-b5a2-535ee8c3bb8b}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {316801d3-06ac-4051-bf85-8505c7cea02e}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 2b, ! Name + {a10e56d2-1d33-49b0-b95d-7e3bcc8f45f4}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {70477a34-7eba-45eb-a4de-cf012d9d7b22}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {6df2548e-2560-465f-80df-54221a9f4518}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3a, ! Name + {8b3342dd-28db-4061-ada2-8cae10565ee1}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {7b77ac30-6a89-4e1d-b9da-9ae43d2c2fba}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {2017f1c3-ef39-45d8-8b99-aaa99fb323c8}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAS, ! Name + {58051a46-57b3-48bb-b526-f921db856fed}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {85f8f973-3c89-4211-af04-33d272908153}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {86288741-bd63-4894-b3ba-9084acfab11d}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAX, ! Name + {d88fcdd3-0f59-44d6-b2fa-00046d5a8d38}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {4ba4ab3b-5a4e-46b0-bbe9-babcc81b1f1f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {932194b6-37e1-4fbe-994c-474f9a0c3cd4}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3c, ! Name + {e0ba6565-e50d-43a0-96b6-78c5cf23d5db}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {7b77ac30-6a89-4e1d-b9da-9ae43d2c2fba}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {73b32bb8-9cc0-4239-9230-12d432ea85b6}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 4a, ! Name + {8b2f1991-e0d7-44d0-8dec-3570597f4e7c}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {1b906aff-1e98-471c-803d-42114d0a793f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {a2fc9852-76f4-4764-a297-ecdef3e2db5b}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 4b, ! Name + {fbd1ee56-14e5-4485-b677-c7d2d247989b}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {30256185-eaf7-4da2-a000-f392993319eb}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {626629be-4b22-4be9-b505-d9d7a4a8369d}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 4c, ! Name + {b5678963-69cc-41b8-8ee1-0290260b71d8}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {1d71daf6-04e0-4bb4-8cc9-5d2ecd6c19f0}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {8e5a1a2c-9ed8-4720-8336-4b1506394ba7}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 5, ! Name + {93a7b80d-a84f-475c-bd16-cd2d8d258211}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {9fd0362a-6a04-4b8c-ac16-52e57ea164b3}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {cdc1d585-c24d-4897-acf5-7cdff33ca909}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 6a, ! Name + {62472710-0dde-454e-aca3-684fe5de042e}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {1de98b0b-94f6-4f17-9790-8d7b296f374b}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {2597c016-9132-4cbf-a686-4d1f0b0e2c95}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 6b, ! Name + {f5cbbd78-f617-452c-aa96-fb510b947923}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {df03566f-4b4b-4bd3-a213-43d0a2f7bd6f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {0799f471-97ce-4dd0-adf4-622876330f3b}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 7, ! Name + {ac666658-8748-4834-adee-570ae7ed5105}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {f3bdb7b6-e1f4-47fa-ac02-68c81b45d2ca}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {2fe427fb-7554-41ec-b2bb-924544139eed}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 8, ! Name + {9e3dd5c1-aedd-4915-9fa3-55c120cc434d}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {54da9b7c-0304-45b8-a392-2f28e6f465a8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {dace5542-a17c-412c-b697-3374df49a0df}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 1, ! Name + {8e9a9799-f57a-48a4-85aa-e9c309ab87ba}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 2 + +OS:Construction, + {af7bf8b3-d3bb-4b1b-9ba2-f5ffa268db9e}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2a, ! Name + {63565275-942b-4ec9-88a3-980195ad26d2}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {70726037-5c93-4967-b634-86c62e81d254}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {9e8f9fac-d534-4c1b-b050-9db05dea59d5}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2b, ! Name + {50e0831a-201e-4970-889a-0d998a4d27be}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {a06f6b6d-25f3-4313-a5ca-d10b08cd01b6}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {0e5b876b-aa12-4cc6-aa7c-9e02a44737ab}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3a, ! Name + {041838ef-065b-4663-910d-a86a92242195}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {bc22faab-96f1-4058-b0d6-e90a93cff29a}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {6e66a394-02f3-4fbb-90ef-58e24657b9ae}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAS, ! Name + {60552f73-b51b-48f4-a124-f079b22ad5bc}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {0a6a8da6-2d64-4c90-99e7-e397f0e06bc4}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {fc5dd395-b69f-480d-a737-12e4d7e6f702}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAX, ! Name + {51793fc4-e175-4962-9516-b1752517722e}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {ddb0f918-b63e-43c7-9573-49db8064b3e5}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {cf2acecb-928f-43e5-85d5-1f6b5cfeae6c}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3c, ! Name + {19d94ea4-9fc8-435a-9338-dc78a5fe51a1}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {bc22faab-96f1-4058-b0d6-e90a93cff29a}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {c23573ef-8b97-4653-bff2-b41676a03cc5}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4a, ! Name + {a2959771-40ee-4c7a-8dcc-5e469376f24e}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {62e3c160-9c4e-499b-82df-50ce9069db82}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ccb790d1-f359-4aeb-a95e-fdabe6dd24b9}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4b, ! Name + {663860ba-bb01-4a1a-a121-ac18a856fc03}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {f90e6959-0fe3-433f-80ca-8908a6b996b6}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {d94ec03c-0bd9-408b-ad79-ea087ec77297}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4c, ! Name + {e3a90d46-a04d-45cd-8869-d2788354ed13}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {9bf46ef8-7a8d-4d73-b6e9-28b7f87c966f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {3b6b7c23-b714-4fba-9c17-ed00ba57acf0}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 5, ! Name + {5b4f2711-1f94-4967-8870-af44a15a6a47}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {73dcf23c-a2ac-416b-8240-d503ff433bdf}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {f22f386c-97cf-4198-8cd1-1a507b3f019d}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6a, ! Name + {3c24f67c-11ea-4f12-af43-bcf6634ca09d}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {a1cc5eca-97c4-4b06-82ee-53b15cd315d0}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {539499a7-a540-434e-a4fd-3b78229d6483}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6b, ! Name + {9c8c8844-769d-4530-a128-cb5c566c5eb5}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {7afb4b8c-56e4-4f2d-bbf1-f15ae619a45e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {f2b14196-7496-41fb-93be-e84398184ab1}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 7, ! Name + {2b5a1981-e79b-474d-be36-9f565f91ff5c}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {8ef4bdaf-b756-4204-9341-3fd6518751f6}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {b427a890-b923-4a3a-8e8a-db080692b071}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 8, ! Name + {fd610a61-d0f4-48e1-8a54-d512bb7ced2b}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {a866faf2-2c39-4700-9fee-12c3855558b1}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {beca645f-f1e0-4112-b23b-2e5b77a0f460}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 1, ! Name + {ec1d367a-f313-4c3f-a02d-1787cabe194f}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 2 + +OS:Construction, + {f821f531-08b8-4e96-90a3-1917e407e489}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2a, ! Name + {a8ded15b-90fc-4cfb-aaf8-94565ed3c1f3}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {bbaf4d38-ce87-4a92-83ad-ee7436312e5d}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {3a741736-e93f-4bfc-ba4b-05c72cb11514}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2b, ! Name + {4803aae2-cd91-42eb-8ca9-310d638251dd}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {86eec0d5-e0d5-4657-86de-b0b705b50ef8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {7745a2e9-4acf-4905-bc6b-b6be434995f8}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3a, ! Name + {8e1a65e9-23fe-43b2-86e3-9d5e21d76019}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {3ca633fa-2e8d-4d7d-a47f-e106006d7990}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {c3a74eab-f97c-4ff9-a5fa-8e0c1f6c9f9f}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAS, ! Name + {faa05fc0-ccf3-4a57-b000-696448aaea88}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {1d0cda6a-1450-495b-bb01-1a3737a774a8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ab08b284-648c-4ead-929f-eccd2231bcbc}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAX, ! Name + {9ed7a618-9d28-4553-afd0-18888b8b0397}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {193edcb6-bfa0-4540-b193-e52c425ec189}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {5e1645b7-f17b-469d-abc1-fc705b9ba8cc}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3c, ! Name + {8b61a631-439f-4ebe-9c66-43bd0c83786d}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {3ca633fa-2e8d-4d7d-a47f-e106006d7990}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {f7fc0e52-c331-493e-b182-b23d4bc4b161}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4a, ! Name + {304bbdc5-2bb3-4fe2-9b5f-3191a15fca14}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {3ae6885a-f3c0-45a9-afad-82e1b9ba4d6e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {a7f59f69-fd96-4133-b004-c800947bd142}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4b, ! Name + {19a6138d-c045-45e4-b052-0850f9eef2ff}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {8d0c591c-f3fe-4a36-85fd-6794ba88aed7}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {748d2fa4-2f26-4353-b8cc-fd3b2f66abe6}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4c, ! Name + {3e84c380-0ec9-4edc-94e6-6f3d936d7ed9}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {1e0b94d9-67b7-4df7-b66b-1b5269485dd7}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {f96f1300-ccf4-4014-9b61-822d3a25813a}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 5, ! Name + {e47c0c57-0813-49da-bce9-37f96f5070c5}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {63ba25d9-1e37-4342-94d9-f46a865f347f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ad1b4341-8da1-4ea7-b2b0-7f2e01f36a54}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6a, ! Name + {03a77cda-01a3-424a-bdf2-6d56b1f47371}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {b830e255-c086-4cb0-8edd-cb7cdddfdaf8}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {1ec62bb4-c924-4796-a734-a1cf9c137b39}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6b, ! Name + {6164f3f5-0277-4615-bfa3-05e357161ad8}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {bac9b3cc-98cb-4171-b025-b798df850e24}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {c9f8880f-f5cc-4c8d-890a-29b38fa8f85e}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 7, ! Name + {8dca0820-e1bc-4978-998a-10884e1ea615}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {70642f3c-f5d0-4b6e-b7eb-539337c61b10}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {b487c56d-ca90-4dcb-bea2-35a5ad871afa}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 8, ! Name + {16b6ea15-2cef-4b52-b5af-91bb90428e20}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {d702b8e9-b1ae-4af7-9e80-0a19eeeb317f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {a4bcfecc-aa0e-47e1-b565-862ca5a40783}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 1-2, ! Name + {2ef32c95-309e-4816-8344-b4e7e72f6ddf}, ! Surface Rendering Name + {792bbea6-984c-4239-a3a1-502aeb832ac7}; ! Layer 1 + +OS:Construction, + {601d9a50-d571-467f-b571-5b7dca4d71bf}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3a, ! Name + {150dd112-56e6-47fe-8cad-a893fcef9107}, ! Surface Rendering Name + {1c2a0b13-5f9c-4d24-a833-7f17cf3fa9b8}; ! Layer 1 + +OS:Construction, + {1a3406b4-d5d8-4392-8943-c87e30018a87}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3b LAS, ! Name + {6dbced9e-5424-4033-9661-1714c27171ee}, ! Surface Rendering Name + {792bbea6-984c-4239-a3a1-502aeb832ac7}; ! Layer 1 + +OS:Construction, + {fe5d3e8b-a3d4-4e0f-aca5-8af043c965e8}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3b LAX, ! Name + {8bf35726-d751-47f8-b634-e25a7ef1d19b}, ! Surface Rendering Name + {05610e04-f6ad-4d03-9915-9ef06204b77b}; ! Layer 1 + +OS:Construction, + {350c2a89-42cb-47dd-bc5e-8cfa6361891b}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3c, ! Name + {cc58d3aa-0efb-40cd-84bb-63431a1a7648}, ! Surface Rendering Name + {2e7e90d4-05f5-4dc0-b6a7-d3ebb3a6e955}; ! Layer 1 + +OS:Construction, + {a68856ac-4914-4361-9c29-34cc2e916be3}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 4a, ! Name + {a1fd572d-ecc8-49f2-97d1-216ee9242091}, ! Surface Rendering Name + {b2b12a2f-6927-4174-a902-2b9f4335e392}; ! Layer 1 + +OS:Construction, + {34c491b9-29e3-44f9-af74-7ca3425baa6d}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 4b, ! Name + {acc8d852-042b-4336-9e90-7ddeb40023ab}, ! Surface Rendering Name + {6cd6c08c-958d-474f-89d6-2e912faaed3b}; ! Layer 1 + +OS:Construction, + {db21706d-f6c9-4906-bfca-0b08de0c2a0e}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 4c, ! Name + {51e1b71e-4630-44b8-a903-9102b249bc0c}, ! Surface Rendering Name + {2e7e90d4-05f5-4dc0-b6a7-d3ebb3a6e955}; ! Layer 1 + +OS:Construction, + {d04bfd29-0b63-4d88-b0c7-97e2e9fe8593}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 5, ! Name + {f02e4868-6845-4619-9ba3-d5da736a7a73}, ! Surface Rendering Name + {3d29d6fa-2364-448b-9043-caf2dc3a1986}; ! Layer 1 + +OS:Construction, + {1d2057aa-367d-414a-ac89-6628e2bcba9b}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 6, ! Name + {9f646273-1ce4-4cb6-b9f7-bfe2972b569d}, ! Surface Rendering Name + {9ba65076-61e9-4056-b655-3979ff36305c}; ! Layer 1 + +OS:Construction, + {160f0a7c-ff95-4a35-b1c2-ffb6f0f0eacb}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 7, ! Name + {158646e6-47ef-4969-b255-03d44106b666}, ! Surface Rendering Name + {871fe623-8418-4785-bf65-b6c3e9bdfc1d}; ! Layer 1 + +OS:Construction, + {18d22441-d49c-4e9f-99a9-c47766ecda5f}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 8, ! Name + {95429580-e4e8-45ed-ba08-c3dbb35a0fa1}, ! Surface Rendering Name + {d5165f0e-1b13-471a-a041-2662ffed0297}; ! Layer 1 + +OS:Construction, + {02849ebe-17f6-422a-b1a2-ef2d5a2511d7}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone alt-lrgoff hosp 1-8, ! Name + {faf763cc-89f2-42a7-89af-050976efebb3}, ! Surface Rendering Name + {792bbea6-984c-4239-a3a1-502aeb832ac7}; ! Layer 1 + +OS:Construction, + {d11a9311-c90f-447d-9e9c-e7cc780930d4}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 1-3, ! Name + {acd816cb-8fd7-483d-beb8-9c0162b90509}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {c20942b9-37de-435d-86ad-c3fc584ce8e0}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {7f8e9ec5-9ad8-4313-9fe4-60b5255ad1f2}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4a, ! Name + {923055e5-5cc0-45ff-b398-f1d087c3316a}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {8b86b4b2-e6c5-4ff6-84dd-c3a51748e996}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {82e5e3d0-c8fd-4fbb-9d03-c1c446e2ddef}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4b, ! Name + {adef2ba0-7ea6-408a-a393-11dd9183e599}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {140ca8f8-47f4-49f5-b334-453151c3836f}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {651ba122-dd3c-4be1-8f9d-a0914921a22c}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4c, ! Name + {4422f757-0b74-4c2f-b083-0582814bfd02}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {d9215034-34f1-449d-a4c8-1435b4a3cd08}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {5de4bb7e-db8b-4dc6-acb4-9035fdf06e8d}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5a, ! Name + {7a8de390-c796-401c-bb0f-5c6531888e5f}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {196873b2-fe90-46f8-b8b4-2b5fd9f1d2ce}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {d81c668b-06eb-4a72-a25a-60c1b5d885cb}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5b, ! Name + {e5cbb53b-4ae1-4f81-8d4f-1f77c599a406}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {38c2d62f-b193-4c3e-902e-fe3190e77900}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ce2e906f-2eab-446b-800e-cf89be954243}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 6, ! Name + {497f403b-e575-4d24-9432-7078b4b19c22}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {77b26504-2009-4b81-bdad-8f821d1a00f9}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {f896d0fa-3448-4299-a37a-1f0e0e6f36b6}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 7, ! Name + {4896d242-e6af-465d-88be-c1539325d2fd}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {60a25b0b-4187-43c5-8e39-81a368f55a0c}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {935c4879-1e8c-4359-9199-a385079b50be}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 8, ! Name + {7d97d0dc-29b9-4be5-ba0e-b5fea16ae416}, ! Surface Rendering Name + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Layer 1 + {77b26504-2009-4b81-bdad-8f821d1a00f9}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {c10eb4c4-c6e7-4f7b-bca7-5bc77f986646}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 1-3, ! Name + {44733fca-03ab-4774-9588-eb7366554d0f}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {aed17da6-63d5-4b8f-8f07-4b30d5fb9ae2}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {8985ddac-3fd4-4ddd-af5f-92dfe8b9dcd9}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 4a, ! Name + {8e6540ea-dd12-4d1e-afc4-543e5a741004}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {b8b2c44a-a897-40b4-9274-2aae442cfed6}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {667121f9-e7cb-49a4-8471-3f862aa1cfce}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 4b, ! Name + {f52cfe05-223e-482b-8a03-28e9a086485e}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {140ca8f8-47f4-49f5-b334-453151c3836f}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {810abe11-a5cb-430a-9653-ad13f46223de}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 4c, ! Name + {ea53efab-4239-4bd9-9bde-a9122aa104ba}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {d9215034-34f1-449d-a4c8-1435b4a3cd08}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {8d18479b-8637-4d7c-a6f6-e38423de82b6}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 5a, ! Name + {adbc43e2-1255-423d-b85e-0ed4d1d7893d}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {196873b2-fe90-46f8-b8b4-2b5fd9f1d2ce}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {41b9d48b-f5ce-498f-9a19-af98986e5fbb}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 5b, ! Name + {d21f9553-53d1-4ec0-b085-53a9452c291e}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {224e456d-deb7-4af4-8334-8e1d4eeeb844}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {51efc6cc-a4bc-4cd9-90dc-81a6f767d96b}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 6, ! Name + {205baf08-8d9f-4a61-a98a-a8a2b8b978bc}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {b6fd9dc9-1b4b-4590-b2d9-d6731170144a}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {0714ed05-88eb-44a7-9990-aa7e4a7121ee}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 7, ! Name + {dcd46811-074b-44a3-bfef-4ea1e64d2c7c}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {745f0704-7782-46c2-9d3d-cfbc967022c0}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {c3e94101-a60b-4648-bbe9-64c63fbfdca2}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 8, ! Name + {adf70ac3-816a-4aed-aad2-c04c4c9ab083}, ! Surface Rendering Name + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Layer 1 + {b6fd9dc9-1b4b-4590-b2d9-d6731170144a}, ! Layer 2 + {3d133575-ec45-479e-9b7d-5828520e7eb2}; ! Layer 3 + +OS:Construction, + {4c826034-477a-43e5-9400-9f2feeb5730a}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 1-2, ! Name + {77b88734-e69e-46cc-9ee1-b175cda6e336}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {18c8ccdb-c036-4b38-b49d-ba89546c7ce2}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {d2e520b8-a260-4fb0-8394-84440fcf18ed}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 3a, ! Name + {f28e6547-4a70-4e4b-ba56-a7fa5b5a8407}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {122b289c-ffc2-4892-8c42-c1207975f9df}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {9b3b9b4e-e99f-4c66-a420-9e8547b962c7}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 3b, ! Name + {e2e4165f-df62-4bb4-96ff-b7b46530eda1}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {18c8ccdb-c036-4b38-b49d-ba89546c7ce2}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {7644694b-8707-4d2f-b06c-c33f301eda85}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 3c, ! Name + {93c014a1-e313-4432-827d-ca814f3d5494}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {ad2246a1-090f-45a5-ada5-fc4aaa85e7f0}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {5cce306f-af6e-405d-9b29-de1784e4e760}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 4a, ! Name + {0b877208-9b7b-4262-b75c-d547a149e555}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {90b3d310-a43b-4aff-a560-91aa0c591f35}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {96b72eed-df9d-463c-a195-85e145da16be}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 4b, ! Name + {1b520467-7699-4e24-a682-88847cd5f95a}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {ce7df23e-efb6-4adc-adc5-fc28ec3aa28b}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {08188727-8d69-48c9-85a4-96e9c69ea9af}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 4c, ! Name + {29e5d2df-d9d2-4e37-8a4c-6f49dbcf7796}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {d6851d22-d23b-4af1-83e4-dcfe591e050c}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {3f08a677-182a-4bd7-bcdd-ded5d747da38}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 5a, ! Name + {63fd6dbc-e3b3-4d3b-9057-3806faa3e261}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {84acd8fd-16ef-44a7-ab4b-9c7f4efcd522}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {24f23c98-d4a5-40b0-86c8-20ab1c9924f9}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 5b, ! Name + {7065de87-b88f-4703-8d36-eb633741532a}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {d75c35b5-7b9a-4c1b-b622-7e8d7ada0320}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {0881aa27-a4c5-4c95-8ff4-0df2c509d7b1}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 6, ! Name + {ccf9a487-1499-427c-9c58-c03ea13520f5}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {4cea3a88-b653-4148-9530-4df3dfbd8d12}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {8fb41d8a-8838-471c-a52c-9f176a1103b7}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 7, ! Name + {dfd364e1-e3ad-4419-8436-46b4dbc30a80}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {20f20667-e117-4257-baf6-ecab87e87e34}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {a558d14b-7f10-4fe3-8174-643279c41ca4}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 8, ! Name + {6cc160fc-eda5-454a-9fc8-248d3602877c}, ! Surface Rendering Name + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Layer 1 + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Layer 2 + {295e2bfe-fe69-4545-83e9-c4f9521ee9af}, ! Layer 3 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 4 + +OS:Construction, + {c13975ae-0268-443d-bba6-7b8758b53f28}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 1-2, ! Name + {cdf43e8c-2707-4023-a505-a103b5c1122e}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {48426b5b-8855-49b8-bc32-91a25f31da9e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {410d1545-1016-4d81-a278-272353e93857}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 3a, ! Name + {abf65fac-a143-4906-8870-b68e2b29853c}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {71b3c0a8-0c7d-45dd-b33b-5bc1ce676b91}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {df28b534-00e1-4d02-8181-19d21ec39224}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 3b, ! Name + {59430b4e-363e-4bae-96d8-a738d6abddda}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {48426b5b-8855-49b8-bc32-91a25f31da9e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {794c10bb-ddc1-4e32-8600-90851c2f575c}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 3c, ! Name + {0cbff5e1-c8b0-4b2a-992b-628dec59481d}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {71b3c0a8-0c7d-45dd-b33b-5bc1ce676b91}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {7373bce1-e9eb-418a-8386-2aa0ffec7231}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 4a, ! Name + {844fd75e-e0b0-46ae-8ced-5335fc28af5d}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {6fd59db3-0b7b-43cf-954e-74663858468e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {109605dd-9308-4855-b2c2-ddd4c1e76811}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 4b, ! Name + {d7634987-5fd8-4a42-9823-18432cbb72dc}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {83bbe90d-602f-4224-9893-83136b51bf4d}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {6716b909-4567-40d4-b858-5a4e8c5ef2c1}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 4c, ! Name + {01a70f65-484e-4f80-b73d-f9b756234486}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {98d65f2b-d4ce-406c-929a-738279b6e635}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {f6be2b62-1d36-4acd-8b82-b4055bd34446}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 5a, ! Name + {82bf2d2f-f378-41a4-b223-2130a1114b27}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {f2383d9e-2816-4bc0-8f83-e6d6b94d4b0a}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {cce8b023-a385-427d-9607-663f502f1437}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 5b, ! Name + {1b992bb3-58f2-49ec-8b9d-d2d510a12242}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {f82bb960-61d1-4a6f-a562-557a26f190e6}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {6e80f38c-18de-44a4-889f-85b9bc07628d}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 6, ! Name + {93b3a8b8-1ed4-4327-b943-bf3b52676060}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {21cf61df-a7d6-458c-a896-50cd1bc3895e}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {30c69ccb-5102-4b0a-8709-8b5c78acad43}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 7, ! Name + {c97c10eb-f21e-4e62-9967-72b4ef407d86}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {d66ed090-4246-4a1c-9810-c2b53be4315b}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {aaecadeb-2717-43af-9512-212a3fbcce6b}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 8, ! Name + {fdcfe45e-c6ba-43b1-8a9f-690c6f3e3825}, ! Surface Rendering Name + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Layer 1 + {e1891fbc-6eb3-4f15-86cf-bea124d394cf}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {a6174430-a1cd-477a-9134-5dd61f9260bf}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 1-3b, ! Name + {94bf8dd4-d14d-4dce-ac68-d72e4411e103}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {9648adf1-1cfd-4959-b2b0-1fe96c98328a}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {bf89d7e8-db22-449a-88e0-ff884fd061dc}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 3c, ! Name + {55c209df-3b26-42d7-a30e-7421b4a7f912}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {5b1e7cea-54b9-4059-b6ed-dc61cb4f8c88}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {1f68eb3f-ed23-4dff-a91d-de23381d46ce}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 4a, ! Name + {05353120-3742-43bb-b04c-a08dbcf670b8}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {9731b4f8-7399-4f7d-9511-20a11c381c0a}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {d0d22f5e-83e3-4f3a-8de2-8e7267bbeaf1}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 4b, ! Name + {cdc7c4ba-a5c5-4fd3-b783-cf84a130443d}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {341d0543-d09b-4c63-b74e-73e67d7ef5be}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {89eb8c35-e705-4571-82fe-0ff8a0538e47}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 4c, ! Name + {5482f903-095c-420e-bdc1-5cf22a47d7f7}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {8ab1d287-c9aa-42f4-85d2-640bd9f31ba7}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {ad18d4fd-71ea-4f9d-ae08-612366035c0e}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 5a, ! Name + {b04bf47c-c5de-4f59-a18a-f063cfe28957}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {3590b762-0a6f-486b-87ec-7fc4ad566046}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {d6157b0f-6062-4a60-bc7b-6d3e5c720f26}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 5b, ! Name + {849f1f45-ac9e-44aa-a8d1-c03e31cad58f}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {85e4a19d-7001-46a7-974a-fd8668f7b051}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {e2530f8a-6f51-4a69-91a6-8ec59c79528b}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 6, ! Name + {c83c7eab-0fe4-458d-8da2-85ed2e5446ed}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {6ceb61ae-d293-448a-9d3c-b756b7b1e3a4}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {e5e01825-3931-491f-8adf-4446ddd810c9}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 7, ! Name + {c2dc01f1-5dc4-4910-8760-8a418f502eda}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {e64d2caf-b654-41a7-9307-9ae1abb96f22}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {40b8ff50-7261-439e-bd7b-5085147aa3d1}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 8, ! Name + {3833555c-94b3-4e59-8bc9-788dfe2ce1dd}, ! Surface Rendering Name + {8ad01829-f7da-4786-8028-167a932883c3}, ! Layer 1 + {f25d0999-b31a-46d8-9999-37c5c19b583d}, ! Layer 2 + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}; ! Layer 3 + +OS:Construction, + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Handle + CBECS Before-1980 ExtWindow ClimateZone 1-4, ! Name + {183b6938-31e1-4693-8537-fc2fefff34d1}, ! Surface Rendering Name + {b856edfa-5cae-4207-9bc9-a2cb8c254596}; ! Layer 1 + +OS:Construction, + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Handle + CBECS Before-1980 ExtWindow ClimateZone 5-8, ! Name + {adfb8b7e-3ab3-48a4-a516-1f25ea768cdf}, ! Surface Rendering Name + {6833b0b5-6a33-4f59-89c8-600daa3befcf}; ! Layer 1 + +OS:Construction, + {c34bf3ec-dadb-457b-85aa-13c3b5a72ef8}, ! Handle + CBECS Before-1980 ExtWindow ClimateZone alt-lrgoff hosp 1-8, ! Name + {50875956-913e-4b66-bfa9-feb83313be9a}, ! Surface Rendering Name + {b856edfa-5cae-4207-9bc9-a2cb8c254596}; ! Layer 1 + +OS:DefaultConstructionSet, + {e048c64e-9eba-4c8c-a734-65ad64f4dd56}, ! Handle + 000 Default Constructions ConstSet, ! Name + {6d3a4026-1e88-4e75-a198-01ae36f80f87}, ! Default Exterior Surface Constructions Name + {5750823c-bae4-4180-9363-5e4bff9040b0}, ! Default Interior Surface Constructions Name + {234b33fe-3dc4-4931-8dcd-974d5830fcc2}, ! Default Ground Contact Surface Constructions Name + {82ee05e6-2eb2-4158-be22-7dd9c13c70af}, ! Default Exterior SubSurface Constructions Name + {53c598e6-015c-4846-b54a-9168cc613369}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {dbada510-45af-4731-b2e5-7dbad79ca4c4}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1 (s scho) ConstSet, ! Name + {ea2468bf-0ac7-4a35-9de0-da6a2a188677}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {6c7bc350-d479-4ceb-9e78-241ed7c57d62}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {dbc6fb4f-b309-4501-ba9d-c5af4c4e5f0d}, ! Handle + ASHRAE 189.1-2009 ClimateZone 2 (s scho) ConstSet, ! Name + {84353bb7-e5e3-446a-ba4a-a9f66d01010c}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {0ec940d1-3ef6-487b-9885-35c35e2ac3eb}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {739aee6a-d525-4acc-b008-abd536571c16}, ! Handle + ASHRAE 189.1-2009 ClimateZone 3 (s scho) ConstSet, ! Name + {aa3fc52c-cf27-44cf-8bc2-2b7d2c09b15a}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {dce464c5-5b14-430b-8bb6-b87a124ec54d}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {f7b68a59-87e0-4de6-8047-f75fef749334}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-5 (s scho) ConstSet, ! Name + {e3335648-7af0-4e2d-9f43-7d3ab5081a13}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {6276ea6b-50c8-4c93-8fc8-e96706a99bfa}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {af5d984a-ce34-4f76-9e66-8122eedf9321}, ! Handle + ASHRAE 189.1-2009 ClimateZone 6 (s scho) ConstSet, ! Name + {d7d6e92c-4e46-4e84-b392-266fb4b72c6b}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {7a9ecd94-9ffa-4839-87aa-b5abb8399696}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {1b80f51e-a766-4bfa-a474-4c1eaab56d29}, ! Handle + ASHRAE 189.1-2009 ClimateZone 7-8 (s scho) ConstSet, ! Name + {6dcc2dd8-eebe-4d2c-8b85-3d638ca0df45}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {5359de57-4f12-41a2-b0d3-396fc6916aef}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {6b8d500f-c0a7-4a77-bf00-34dbfcc42303}, ! Handle + ASHRAE 90.1-2004 ClimateZone 1-2 (s scho) ConstSet, ! Name + {6db01b71-537a-45bc-904e-4c6332fab6aa}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {433bb2cb-135a-4800-b740-22ac09affc9c}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {ece2faf1-4bbc-44b7-a344-d5f0c2e93df5}, ! Handle + ASHRAE 90.1-2004 ClimateZone 3a-3b (s scho) ConstSet, ! Name + {2210df53-ea8f-44ce-82d5-ccc60f386113}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {d950d87b-a5c0-47be-a4c4-2c23e315512d}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {4a4b0044-4565-45f8-90d7-b68f49a823ef}, ! Handle + ASHRAE 90.1-2004 ClimateZone 3c (s scho) ConstSet, ! Name + {b0ea6546-eef6-44aa-b9b8-2effbb3f89e4}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {9fd03567-9fba-4e49-91df-a82e85e27473}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {cc4731b9-99e3-4f9c-91b4-42e8a084d22b}, ! Handle + ASHRAE 90.1-2004 ClimateZone 4 (s scho) ConstSet, ! Name + {0be66da3-497a-4f20-a39e-e80b6b447a74}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {d31b7460-8968-44b2-bf81-631bafc061e1}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {077ce30a-72cf-472e-ba88-ce83644666b3}, ! Handle + ASHRAE 90.1-2004 ClimateZone 5-6 (s scho) ConstSet, ! Name + {34fb2098-cdaa-41fd-9388-9f95e8ae7212}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {24b94ef9-5d22-45d9-a906-2d52b1a551de}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {3aacb568-67f5-47b2-a12b-7615f79105d9}, ! Handle + ASHRAE 90.1-2004 ClimateZone 7 (s scho) ConstSet, ! Name + {77b56a4a-6765-4178-b26e-45c78e03585b}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {55189a53-2795-4ebd-a40d-c9ced1acf747}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {c8e40d77-b828-4bdd-9205-e310fa8f7162}, ! Handle + ASHRAE 90.1-2004 ClimateZone 8 (s scho) ConstSet, ! Name + {5ce01e3e-b57d-4c02-a768-0acccf8bd443}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {e1f6cbe4-36d4-4b5c-8d7e-60443138ac3d}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {dee4b72b-a0f2-4cd4-8b62-6758b22f71f3}, ! Handle + CBECS 1980-2004 ClimateZone 1 (s scho) ConstSet, ! Name + {c742fa4b-317a-478e-991f-96dbeeb1892b}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {49f912c9-a12a-4dcd-8b84-88cf8648e8be}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {9a50e0b5-ba20-486b-9a44-34ae12d9902e}, ! Handle + CBECS 1980-2004 ClimateZone 2a (s scho) ConstSet, ! Name + {cfb3c7a7-634c-4fe1-bd4a-a6f6bf2ef59a}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {de73ab33-4af1-4b63-b17b-343ba13a6422}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {bf689d09-9741-47ec-8bef-bff139e118e7}, ! Handle + CBECS 1980-2004 ClimateZone 2b (s scho) ConstSet, ! Name + {ac385b3b-bbdc-43cc-bbd3-cd86b10d8635}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {01681266-95ef-45f1-adcf-627110006496}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {6d93e670-b6f3-4e2d-87f8-f41e70f1b190}, ! Handle + CBECS 1980-2004 ClimateZone 3a (s scho) ConstSet, ! Name + {c4801396-9518-425b-aac2-8f15def041dc}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {e14f2def-5a6d-436a-b761-ce36a9f3f309}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {f075018b-dca6-4f92-9308-8557854187fb}, ! Handle + CBECS 1980-2004 ClimateZone 3b LAS (s scho) ConstSet, ! Name + {fea5d7f8-2f57-4e80-ac30-5ceb2138c104}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {24f6a143-0660-4bc7-a9e5-e94c0996c7d8}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {a3395e69-e0a6-4db7-b4a2-cdf2f8cf5141}, ! Handle + CBECS 1980-2004 ClimateZone 3b LAX (s scho) ConstSet, ! Name + {c81bab38-4919-4961-a310-a20936e828f5}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {d3efd27a-7f76-4520-af49-3d6e0b8050a7}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {b8f04063-8e2a-4baa-8473-dc62b664dd39}, ! Handle + CBECS 1980-2004 ClimateZone 3c (s scho) ConstSet, ! Name + {e1fd9e94-75de-4cab-b282-7c6f058e87f1}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {2ba1f473-c27f-412e-b963-3a1072eda701}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {e4e8a633-79eb-4454-b53b-4d88fe5de3e7}, ! Handle + CBECS 1980-2004 ClimateZone 4a (s scho) ConstSet, ! Name + {6de712ef-0b2d-46a2-8f22-d836a3521769}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {4f8b6fb0-5a70-49ba-a6a8-4402407ebba7}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {3426a5fb-9bed-4031-877b-8cddbd9e0bd5}, ! Handle + CBECS 1980-2004 ClimateZone 4b (s scho) ConstSet, ! Name + {0c429083-9ee7-474f-807b-7a29b54ae63c}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {5e2387a5-6b29-4e7e-82f7-6f5a711ff152}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {9b5c3e9f-d09e-4ae9-98b9-15f19cf9624d}, ! Handle + CBECS 1980-2004 ClimateZone 4c (s scho) ConstSet, ! Name + {8cecab76-5e37-4f12-b298-49543cbf8659}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {fe96d60e-fefa-4233-a0e3-9051065720c8}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {19c79695-6d55-4b72-92b9-f09bc4e23de3}, ! Handle + CBECS 1980-2004 ClimateZone 5a (s scho) ConstSet, ! Name + {8bce6ef5-105a-4367-9c07-de93f64396b8}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {c52d9ef3-c27a-46f6-89e8-0fafeca81603}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {e0b170fd-4ffb-4a87-a299-b49c6f63963d}, ! Handle + CBECS 1980-2004 ClimateZone 5b (s scho) ConstSet, ! Name + {3e376e1c-11ee-4b45-94ce-64fc8fa0390d}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {32486897-528d-4ab3-9966-869bfb79853c}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {4a48e5d2-e273-4b9e-8149-5475b5d7b419}, ! Handle + CBECS 1980-2004 ClimateZone 6a (s scho) ConstSet, ! Name + {deee3275-7856-4b7d-a3d1-80326e9b0a96}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {d7a18b48-793b-4c53-8acb-b79b2c0893eb}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {d4efde8b-d0ba-4900-8bc2-b52e96c00e61}, ! Handle + CBECS 1980-2004 ClimateZone 6b (s scho) ConstSet, ! Name + {ce0c4479-9bd2-425a-9988-0cf69e0d520e}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {d6e23cd8-7cf8-4087-ad8d-0a2e6904d61d}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {6e27fc74-fec5-4533-8132-af0dee6de255}, ! Handle + CBECS 1980-2004 ClimateZone 7 (s scho) ConstSet, ! Name + {d6c8c1a2-f11a-4a7d-809e-6c2abe0b8b07}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {fcc19bce-0ef9-4611-80f5-e7584bf9f523}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {4192742c-bf6e-461f-943b-6ff8d7c4ec50}, ! Handle + CBECS 1980-2004 ClimateZone 8 (s scho) ConstSet, ! Name + {0fca0418-fe6b-4372-ad6d-2288041c5960}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {760db367-2e98-4758-a25a-d3f7e46c3e25}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {35dbdf81-7f9a-40f8-9d33-cea47e50fb73}, ! Handle + CBECS Before-1980 ClimateZone 1-3b (s scho) ConstSet, ! Name + {47de92ed-439e-425a-9171-c2dcf43aea0e}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {2b11a090-7ac0-4e79-a0f8-6d07a27c70f9}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {c3010cd2-dd30-4d9f-86e3-b2621b7390d1}, ! Handle + CBECS Before-1980 ClimateZone 3c (s scho) ConstSet, ! Name + {aa7db894-9f87-474b-abf1-159b4ca8243a}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {1d3b6788-5966-454a-8bb7-0a4a662920f1}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {d4f0a9ee-9faa-4a18-8dbe-f14c44ab3ae9}, ! Handle + CBECS Before-1980 ClimateZone 4a (s scho) ConstSet, ! Name + {f35594f5-b8bc-4c81-a54c-50c3e02485a5}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {49805d4e-d49c-4947-9e36-6332fcd0915d}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {d47bd7e4-9067-43bb-b019-cb721ffa168c}, ! Handle + CBECS Before-1980 ClimateZone 4b (s scho) ConstSet, ! Name + {c8214d50-64aa-4ca7-9940-a643b34ad7e0}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {eaefc321-1d82-4b40-ab3d-8b605ba3907b}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {36c7b0f2-2004-444b-8f4e-d62122cdbd6c}, ! Handle + CBECS Before-1980 ClimateZone 4c (s scho) ConstSet, ! Name + {2a69f761-2db8-4b6c-9dc3-3094f1f10b38}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {2e850914-3c5d-4ae6-abdb-232719b4fcc9}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {dc9a950b-f570-40c8-b58e-02d11d6ca97b}, ! Handle + CBECS Before-1980 ClimateZone 5a (s scho) ConstSet, ! Name + {75ef1bad-35f5-49a8-8dd0-25102fece624}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {09adf731-d421-40ff-b989-0ee8e8d52fd7}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {4d3e3a0b-d997-4572-b189-4ed22db9b3fe}, ! Handle + CBECS Before-1980 ClimateZone 5b (s scho) ConstSet, ! Name + {50a8dd6b-0e6a-4c65-b2c1-e6f262b6db4b}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {b1a33b54-b58c-4394-a7b7-6179a5e37ddc}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {ba56414b-54fb-44f2-936d-8f51a8f009a8}, ! Handle + CBECS Before-1980 ClimateZone 6 (s scho) ConstSet, ! Name + {0376b90f-1758-4ccc-bb0e-cda27e1ce38b}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {b820843a-1a42-4915-8bd1-6f94f956bce5}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {3bcff8ba-7196-43f6-8a6b-d32806308502}, ! Handle + CBECS Before-1980 ClimateZone 7 (s scho) ConstSet, ! Name + {fa06a4f2-14f1-4d17-ba4f-dcc2b791e6ce}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {4744e069-6975-4865-9db2-1aa5a033f6ae}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultConstructionSet, + {a228ef8d-e73c-4ff3-b8cf-af15c386c29c}, ! Handle + CBECS Before-1980 ClimateZone 8 (s scho) ConstSet, ! Name + {d5ffa33d-e9a2-4e65-90f6-9accd16b6926}, ! Default Exterior Surface Constructions Name + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Default Interior Surface Constructions Name + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Default Ground Contact Surface Constructions Name + {8cc10ecb-0874-471c-8f6e-127ec4722450}, ! Default Exterior SubSurface Constructions Name + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Default Interior SubSurface Constructions Name + {b122a21f-f3dd-4d2a-ada1-cd5335b3ad34}, ! Interior Partition Construction Name + , ! Space Shading Construction Name + , ! Building Shading Construction Name + ; ! Site Shading Construction Name + +OS:DefaultScheduleSet, + {fdb886e6-13d1-47ff-8dfe-ab7f6b5edc6a}, ! Handle + SecondarySchool Auditorium Schedules, ! Name + , ! Hours of Operation Schedule Name + {b80c5984-52bf-4454-828b-c483ae711bd3}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {81ebe8af-f422-4d64-bc21-6ff750749ada}, ! Handle + SecondarySchool Cafeteria Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {8245cd5b-e772-4cbb-a1d4-90f7c2577033}, ! Handle + SecondarySchool Classroom Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {47e1cd4a-7486-461a-8115-3a9600a7ada2}, ! Handle + SecondarySchool Corridor Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {daf5fed8-5b65-440a-8c6e-c9630fbaf451}, ! Handle + SecondarySchool Gym Schedules, ! Name + , ! Hours of Operation Schedule Name + , ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {c82bc009-a812-40aa-9b86-6e313beaad02}, ! Handle + SecondarySchool Kitchen Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {83168bf5-8697-4081-a040-34e22a7061ad}, ! Electric Equipment Schedule Name + {6050b866-b11c-4448-b39d-3e11bbe44c31}, ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {f94b119f-45bd-4438-ae68-fc88cf1f48a5}, ! Handle + SecondarySchool Library Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {02b7325b-b231-4f07-8525-a14958f777a0}, ! Handle + SecondarySchool Lobby Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {05762368-0d88-4ce4-a570-81a88c8a6687}, ! Handle + SecondarySchool Mechanical Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {d07cd639-c4db-4910-a050-7256b9b7adea}, ! Handle + SecondarySchool Office Schedules, ! Name + , ! Hours of Operation Schedule Name + {b65c9ad7-8b2b-4e42-8cb0-3a253a50022b}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {05669c13-8118-4394-951f-dfd9f9e0b04b}, ! Handle + SecondarySchool Restroom Schedules, ! Name + , ! Hours of Operation Schedule Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Number of People Schedule Name + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! People Activity Level Schedule Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Lighting Schedule Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {dfc858f6-8a8e-4557-b3e2-caf2ef244c13}, ! Handle + Attic Schedules, ! Name + , ! Hours of Operation Schedule Name + , ! Number of People Schedule Name + , ! People Activity Level Schedule Name + , ! Lighting Schedule Name + , ! Electric Equipment Schedule Name + , ! Gas Equipment Schedule Name + , ! Hot Water Equipment Schedule Name + {d14b894d-6718-40f1-bb81-291c435485ea}, ! Infiltration Schedule Name + , ! Steam Equipment Schedule Name + ; ! Other Equipment Schedule Name + +OS:DefaultSubSurfaceConstructions, + {82ee05e6-2eb2-4158-be22-7dd9c13c70af}, ! Handle + 000 Exterior DefSubCons, ! Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Fixed Window Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {8b3d9f21-ccdc-4dbd-b5cf-e62a386c7307}, ! Handle + 000 Interior DefSubCons, ! Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Fixed Window Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Operable Window Construction Name + {1ccc9476-7cb0-40f8-bffb-3d7f62f32c66}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {6c7bc350-d479-4ceb-9e78-241ed7c57d62}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1 (s scho) Exterior DefSubCons, ! Name + {c8099665-7d3b-4d7b-8d85-3f1a1b6e9c57}, ! Fixed Window Construction Name + {c8099665-7d3b-4d7b-8d85-3f1a1b6e9c57}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {0ec940d1-3ef6-487b-9885-35c35e2ac3eb}, ! Handle + ASHRAE 189.1-2009 ClimateZone 2 (s scho) Exterior DefSubCons, ! Name + {425b7cb1-272c-4e02-a98f-161b07082b19}, ! Fixed Window Construction Name + {425b7cb1-272c-4e02-a98f-161b07082b19}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {dce464c5-5b14-430b-8bb6-b87a124ec54d}, ! Handle + ASHRAE 189.1-2009 ClimateZone 3 (s scho) Exterior DefSubCons, ! Name + {246363fd-0aca-4c06-9463-e96291924508}, ! Fixed Window Construction Name + {246363fd-0aca-4c06-9463-e96291924508}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {6276ea6b-50c8-4c93-8fc8-e96706a99bfa}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-5 (s scho) Exterior DefSubCons, ! Name + {cb8c7d4e-9646-4d49-ab15-492be6063a6f}, ! Fixed Window Construction Name + {cb8c7d4e-9646-4d49-ab15-492be6063a6f}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {7a9ecd94-9ffa-4839-87aa-b5abb8399696}, ! Handle + ASHRAE 189.1-2009 ClimateZone 6 (s scho) Exterior DefSubCons, ! Name + {147eb040-250b-448b-8759-b552add3f4f5}, ! Fixed Window Construction Name + {147eb040-250b-448b-8759-b552add3f4f5}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {5359de57-4f12-41a2-b0d3-396fc6916aef}, ! Handle + ASHRAE 189.1-2009 ClimateZone 7-8 (s scho) Exterior DefSubCons, ! Name + {a3f376a2-bdfc-4315-af96-7011df2f3924}, ! Fixed Window Construction Name + {a3f376a2-bdfc-4315-af96-7011df2f3924}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {433bb2cb-135a-4800-b740-22ac09affc9c}, ! Handle + ASHRAE 90.1-2004 ClimateZone 1-2 (s scho) Exterior DefSubCons, ! Name + {5d51a133-05c5-4228-ba67-3c4ba4d0bb27}, ! Fixed Window Construction Name + {5d51a133-05c5-4228-ba67-3c4ba4d0bb27}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {d950d87b-a5c0-47be-a4c4-2c23e315512d}, ! Handle + ASHRAE 90.1-2004 ClimateZone 3a-3b (s scho) Exterior DefSubCons, ! Name + {c9df6abf-d698-4097-8afa-8a4539b85d79}, ! Fixed Window Construction Name + {c9df6abf-d698-4097-8afa-8a4539b85d79}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {9fd03567-9fba-4e49-91df-a82e85e27473}, ! Handle + ASHRAE 90.1-2004 ClimateZone 3c (s scho) Exterior DefSubCons, ! Name + {12ddfc25-687a-464d-8793-d0729f049b82}, ! Fixed Window Construction Name + {12ddfc25-687a-464d-8793-d0729f049b82}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {d31b7460-8968-44b2-bf81-631bafc061e1}, ! Handle + ASHRAE 90.1-2004 ClimateZone 4 (s scho) Exterior DefSubCons, ! Name + {b46f753c-f0ce-4a6e-a6cb-0112ac1afdaa}, ! Fixed Window Construction Name + {b46f753c-f0ce-4a6e-a6cb-0112ac1afdaa}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {24b94ef9-5d22-45d9-a906-2d52b1a551de}, ! Handle + ASHRAE 90.1-2004 ClimateZone 5-6 (s scho) Exterior DefSubCons, ! Name + {b46f753c-f0ce-4a6e-a6cb-0112ac1afdaa}, ! Fixed Window Construction Name + {b46f753c-f0ce-4a6e-a6cb-0112ac1afdaa}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {55189a53-2795-4ebd-a40d-c9ced1acf747}, ! Handle + ASHRAE 90.1-2004 ClimateZone 7 (s scho) Exterior DefSubCons, ! Name + {603cae7f-41c1-4140-888a-0d6a375e14da}, ! Fixed Window Construction Name + {603cae7f-41c1-4140-888a-0d6a375e14da}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {e1f6cbe4-36d4-4b5c-8d7e-60443138ac3d}, ! Handle + ASHRAE 90.1-2004 ClimateZone 8 (s scho) Exterior DefSubCons, ! Name + {e6837572-78f1-4a8e-b3ba-2276c336b19e}, ! Fixed Window Construction Name + {e6837572-78f1-4a8e-b3ba-2276c336b19e}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {49f912c9-a12a-4dcd-8b84-88cf8648e8be}, ! Handle + CBECS 1980-2004 ClimateZone 1 (s scho) Exterior DefSubCons, ! Name + {a4bcfecc-aa0e-47e1-b565-862ca5a40783}, ! Fixed Window Construction Name + {a4bcfecc-aa0e-47e1-b565-862ca5a40783}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {de73ab33-4af1-4b63-b17b-343ba13a6422}, ! Handle + CBECS 1980-2004 ClimateZone 2a (s scho) Exterior DefSubCons, ! Name + {a4bcfecc-aa0e-47e1-b565-862ca5a40783}, ! Fixed Window Construction Name + {a4bcfecc-aa0e-47e1-b565-862ca5a40783}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {01681266-95ef-45f1-adcf-627110006496}, ! Handle + CBECS 1980-2004 ClimateZone 2b (s scho) Exterior DefSubCons, ! Name + {a4bcfecc-aa0e-47e1-b565-862ca5a40783}, ! Fixed Window Construction Name + {a4bcfecc-aa0e-47e1-b565-862ca5a40783}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {e14f2def-5a6d-436a-b761-ce36a9f3f309}, ! Handle + CBECS 1980-2004 ClimateZone 3a (s scho) Exterior DefSubCons, ! Name + {601d9a50-d571-467f-b571-5b7dca4d71bf}, ! Fixed Window Construction Name + {601d9a50-d571-467f-b571-5b7dca4d71bf}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {24f6a143-0660-4bc7-a9e5-e94c0996c7d8}, ! Handle + CBECS 1980-2004 ClimateZone 3b LAS (s scho) Exterior DefSubCons, ! Name + {1a3406b4-d5d8-4392-8943-c87e30018a87}, ! Fixed Window Construction Name + {1a3406b4-d5d8-4392-8943-c87e30018a87}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {d3efd27a-7f76-4520-af49-3d6e0b8050a7}, ! Handle + CBECS 1980-2004 ClimateZone 3b LAX (s scho) Exterior DefSubCons, ! Name + {fe5d3e8b-a3d4-4e0f-aca5-8af043c965e8}, ! Fixed Window Construction Name + {fe5d3e8b-a3d4-4e0f-aca5-8af043c965e8}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {2ba1f473-c27f-412e-b963-3a1072eda701}, ! Handle + CBECS 1980-2004 ClimateZone 3c (s scho) Exterior DefSubCons, ! Name + {350c2a89-42cb-47dd-bc5e-8cfa6361891b}, ! Fixed Window Construction Name + {350c2a89-42cb-47dd-bc5e-8cfa6361891b}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {4f8b6fb0-5a70-49ba-a6a8-4402407ebba7}, ! Handle + CBECS 1980-2004 ClimateZone 4a (s scho) Exterior DefSubCons, ! Name + {a68856ac-4914-4361-9c29-34cc2e916be3}, ! Fixed Window Construction Name + {a68856ac-4914-4361-9c29-34cc2e916be3}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {5e2387a5-6b29-4e7e-82f7-6f5a711ff152}, ! Handle + CBECS 1980-2004 ClimateZone 4b (s scho) Exterior DefSubCons, ! Name + {34c491b9-29e3-44f9-af74-7ca3425baa6d}, ! Fixed Window Construction Name + {34c491b9-29e3-44f9-af74-7ca3425baa6d}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {fe96d60e-fefa-4233-a0e3-9051065720c8}, ! Handle + CBECS 1980-2004 ClimateZone 4c (s scho) Exterior DefSubCons, ! Name + {db21706d-f6c9-4906-bfca-0b08de0c2a0e}, ! Fixed Window Construction Name + {db21706d-f6c9-4906-bfca-0b08de0c2a0e}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {c52d9ef3-c27a-46f6-89e8-0fafeca81603}, ! Handle + CBECS 1980-2004 ClimateZone 5a (s scho) Exterior DefSubCons, ! Name + {d04bfd29-0b63-4d88-b0c7-97e2e9fe8593}, ! Fixed Window Construction Name + {d04bfd29-0b63-4d88-b0c7-97e2e9fe8593}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {32486897-528d-4ab3-9966-869bfb79853c}, ! Handle + CBECS 1980-2004 ClimateZone 5b (s scho) Exterior DefSubCons, ! Name + {d04bfd29-0b63-4d88-b0c7-97e2e9fe8593}, ! Fixed Window Construction Name + {d04bfd29-0b63-4d88-b0c7-97e2e9fe8593}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {d7a18b48-793b-4c53-8acb-b79b2c0893eb}, ! Handle + CBECS 1980-2004 ClimateZone 6a (s scho) Exterior DefSubCons, ! Name + {1d2057aa-367d-414a-ac89-6628e2bcba9b}, ! Fixed Window Construction Name + {1d2057aa-367d-414a-ac89-6628e2bcba9b}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {d6e23cd8-7cf8-4087-ad8d-0a2e6904d61d}, ! Handle + CBECS 1980-2004 ClimateZone 6b (s scho) Exterior DefSubCons, ! Name + {1d2057aa-367d-414a-ac89-6628e2bcba9b}, ! Fixed Window Construction Name + {1d2057aa-367d-414a-ac89-6628e2bcba9b}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {fcc19bce-0ef9-4611-80f5-e7584bf9f523}, ! Handle + CBECS 1980-2004 ClimateZone 7 (s scho) Exterior DefSubCons, ! Name + {160f0a7c-ff95-4a35-b1c2-ffb6f0f0eacb}, ! Fixed Window Construction Name + {160f0a7c-ff95-4a35-b1c2-ffb6f0f0eacb}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {760db367-2e98-4758-a25a-d3f7e46c3e25}, ! Handle + CBECS 1980-2004 ClimateZone 8 (s scho) Exterior DefSubCons, ! Name + {18d22441-d49c-4e9f-99a9-c47766ecda5f}, ! Fixed Window Construction Name + {18d22441-d49c-4e9f-99a9-c47766ecda5f}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {2b11a090-7ac0-4e79-a0f8-6d07a27c70f9}, ! Handle + CBECS Before-1980 ClimateZone 1-3b (s scho) Exterior DefSubCons, ! Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Fixed Window Construction Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {1d3b6788-5966-454a-8bb7-0a4a662920f1}, ! Handle + CBECS Before-1980 ClimateZone 3c (s scho) Exterior DefSubCons, ! Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Fixed Window Construction Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {49805d4e-d49c-4947-9e36-6332fcd0915d}, ! Handle + CBECS Before-1980 ClimateZone 4a (s scho) Exterior DefSubCons, ! Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Fixed Window Construction Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {eaefc321-1d82-4b40-ab3d-8b605ba3907b}, ! Handle + CBECS Before-1980 ClimateZone 4b (s scho) Exterior DefSubCons, ! Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Fixed Window Construction Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {2e850914-3c5d-4ae6-abdb-232719b4fcc9}, ! Handle + CBECS Before-1980 ClimateZone 4c (s scho) Exterior DefSubCons, ! Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Fixed Window Construction Name + {9039ed54-f270-49a6-82f0-6fbc063f9936}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {09adf731-d421-40ff-b989-0ee8e8d52fd7}, ! Handle + CBECS Before-1980 ClimateZone 5a (s scho) Exterior DefSubCons, ! Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Fixed Window Construction Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {b1a33b54-b58c-4394-a7b7-6179a5e37ddc}, ! Handle + CBECS Before-1980 ClimateZone 5b (s scho) Exterior DefSubCons, ! Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Fixed Window Construction Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {b820843a-1a42-4915-8bd1-6f94f956bce5}, ! Handle + CBECS Before-1980 ClimateZone 6 (s scho) Exterior DefSubCons, ! Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Fixed Window Construction Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {4744e069-6975-4865-9db2-1aa5a033f6ae}, ! Handle + CBECS Before-1980 ClimateZone 7 (s scho) Exterior DefSubCons, ! Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Fixed Window Construction Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {8cc10ecb-0874-471c-8f6e-127ec4722450}, ! Handle + CBECS Before-1980 ClimateZone 8 (s scho) Exterior DefSubCons, ! Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Fixed Window Construction Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {9dc89ff7-e9f1-471d-bfbe-d4c13c8ecca7}, ! Handle + example ASHRAE 189.1-2009 ClimateZone 5a AtticConstructionSet (s scho) Exterior DefSubCons, ! Name + {cb8c7d4e-9646-4d49-ab15-492be6063a6f}, ! Fixed Window Construction Name + {cb8c7d4e-9646-4d49-ab15-492be6063a6f}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {cb707dc6-31c7-4536-99ac-653be237d8e4}, ! Handle + example ASHRAE 90.1-2004 ClimateZone 5a AtticConstructionSet (s scho) Exterior DefSubCons, ! Name + {b46f753c-f0ce-4a6e-a6cb-0112ac1afdaa}, ! Fixed Window Construction Name + {b46f753c-f0ce-4a6e-a6cb-0112ac1afdaa}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {20f94217-e008-4234-b5eb-978d29bcfe48}, ! Handle + example CBECS 1980-2004 ClimateZone 5a AtticConstructionSet (s scho) Exterior DefSubCons, ! Name + {d04bfd29-0b63-4d88-b0c7-97e2e9fe8593}, ! Fixed Window Construction Name + {d04bfd29-0b63-4d88-b0c7-97e2e9fe8593}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {8ccd7bd5-0b70-486b-a5b5-5383fd7c1918}, ! Handle + example CBECS Before-1980 ClimateZone 5a AtticConstructionSet (s scho) Exterior DefSubCons, ! Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Fixed Window Construction Name + {e8864f9e-db78-420d-afc0-e2ee3d3f4d42}, ! Operable Window Construction Name + {be8bc3ea-c628-46f3-b27c-f055e4627e7d}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:DefaultSurfaceConstructions, + {6d3a4026-1e88-4e75-a198-01ae36f80f87}, ! Handle + 000 Exterior DefSurfCons, ! Name + {29a08e4c-fddd-4b98-af7c-fcd287ed072e}, ! Floor Construction Name + {6c7472d3-1e4d-47b4-8afb-6733094ed5d7}, ! Wall Construction Name + {813415d1-f505-4e0c-953a-49af3e762d48}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {946bd274-4707-4a36-ac48-018462fc15dc}, ! Handle + 000 Ground DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Wall Construction Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {cd90da22-4bb9-4d6a-bec1-a681967e707a}, ! Handle + 000 Interior DefSurfCons, ! Name + {07092fd3-9719-4a3a-851a-61e694c7b2e6}, ! Floor Construction Name + {e6ff48b6-cff2-4bb8-aed2-df3c527afd49}, ! Wall Construction Name + {305c1cce-364a-4113-af8d-9f7f6db58322}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {ea2468bf-0ac7-4a35-9de0-da6a2a188677}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {45f51e73-925b-410b-ac89-a0e3467d0771}, ! Wall Construction Name + {977371f4-689a-41c6-8642-8f68aff9537c}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {84353bb7-e5e3-446a-ba4a-a9f66d01010c}, ! Handle + ASHRAE 189.1-2009 ClimateZone 2 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {45f51e73-925b-410b-ac89-a0e3467d0771}, ! Wall Construction Name + {16ca3b6f-5a0a-498e-bd42-63229111ebd8}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {aa3fc52c-cf27-44cf-8bc2-2b7d2c09b15a}, ! Handle + ASHRAE 189.1-2009 ClimateZone 3 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {45f51e73-925b-410b-ac89-a0e3467d0771}, ! Wall Construction Name + {16ca3b6f-5a0a-498e-bd42-63229111ebd8}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {e3335648-7af0-4e2d-9f43-7d3ab5081a13}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-5 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {ce0f71d7-73c2-4a1e-b3d3-0e5440ca5296}, ! Wall Construction Name + {16ca3b6f-5a0a-498e-bd42-63229111ebd8}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {d7d6e92c-4e46-4e84-b392-266fb4b72c6b}, ! Handle + ASHRAE 189.1-2009 ClimateZone 6 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {ce0f71d7-73c2-4a1e-b3d3-0e5440ca5296}, ! Wall Construction Name + {a8e21ad8-1c9d-4d7f-8664-133b46f7a330}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {6dcc2dd8-eebe-4d2c-8b85-3d638ca0df45}, ! Handle + ASHRAE 189.1-2009 ClimateZone 7-8 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {ce0f71d7-73c2-4a1e-b3d3-0e5440ca5296}, ! Wall Construction Name + {1e828946-1550-434e-9fff-71b43ebfbc38}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {6db01b71-537a-45bc-904e-4c6332fab6aa}, ! Handle + ASHRAE 90.1-2004 ClimateZone 1-2 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {69c0432a-a291-42fe-967d-79fb70e6f68b}, ! Wall Construction Name + {86115717-6ac2-43f6-a75f-6ada902eb588}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {2210df53-ea8f-44ce-82d5-ccc60f386113}, ! Handle + ASHRAE 90.1-2004 ClimateZone 3a-3b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {69c0432a-a291-42fe-967d-79fb70e6f68b}, ! Wall Construction Name + {86115717-6ac2-43f6-a75f-6ada902eb588}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {b0ea6546-eef6-44aa-b9b8-2effbb3f89e4}, ! Handle + ASHRAE 90.1-2004 ClimateZone 3c (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {69c0432a-a291-42fe-967d-79fb70e6f68b}, ! Wall Construction Name + {86115717-6ac2-43f6-a75f-6ada902eb588}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {0be66da3-497a-4f20-a39e-e80b6b447a74}, ! Handle + ASHRAE 90.1-2004 ClimateZone 4 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {69c0432a-a291-42fe-967d-79fb70e6f68b}, ! Wall Construction Name + {86115717-6ac2-43f6-a75f-6ada902eb588}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {34fb2098-cdaa-41fd-9388-9f95e8ae7212}, ! Handle + ASHRAE 90.1-2004 ClimateZone 5-6 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {8dbd7e3e-62fc-4d8b-81eb-32251586ffe4}, ! Wall Construction Name + {fd03cbb3-1345-4e42-9a8c-589aaa532ee6}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {77b56a4a-6765-4178-b26e-45c78e03585b}, ! Handle + ASHRAE 90.1-2004 ClimateZone 7 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {30ac70f8-4997-4d5e-b52d-01267d095c8f}, ! Wall Construction Name + {a5e66d6f-9309-4818-83a0-1229969c6918}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {5ce01e3e-b57d-4c02-a768-0acccf8bd443}, ! Handle + ASHRAE 90.1-2004 ClimateZone 8 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {30ac70f8-4997-4d5e-b52d-01267d095c8f}, ! Wall Construction Name + {60b9b486-9fea-4fa5-ba03-7a62df6530e1}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {c742fa4b-317a-478e-991f-96dbeeb1892b}, ! Handle + CBECS 1980-2004 ClimateZone 1 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {dace5542-a17c-412c-b697-3374df49a0df}, ! Wall Construction Name + {8c38de40-9814-4b87-ab70-aa6d5de8b222}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {cfb3c7a7-634c-4fe1-bd4a-a6f6bf2ef59a}, ! Handle + CBECS 1980-2004 ClimateZone 2a (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {af7bf8b3-d3bb-4b1b-9ba2-f5ffa268db9e}, ! Wall Construction Name + {17567edd-77c5-4970-a431-d588b38999be}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {ac385b3b-bbdc-43cc-bbd3-cd86b10d8635}, ! Handle + CBECS 1980-2004 ClimateZone 2b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {9e8f9fac-d534-4c1b-b050-9db05dea59d5}, ! Wall Construction Name + {3cafeaf1-daf6-4e03-8abf-9552f68c2653}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {c4801396-9518-425b-aac2-8f15def041dc}, ! Handle + CBECS 1980-2004 ClimateZone 3a (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {0e5b876b-aa12-4cc6-aa7c-9e02a44737ab}, ! Wall Construction Name + {67cdd7ff-a241-4ebb-ade0-a0329dcba876}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {fea5d7f8-2f57-4e80-ac30-5ceb2138c104}, ! Handle + CBECS 1980-2004 ClimateZone 3b LAS (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {6e66a394-02f3-4fbb-90ef-58e24657b9ae}, ! Wall Construction Name + {5929a8a2-0840-4121-a1a0-a72eedb0ad4d}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {c81bab38-4919-4961-a310-a20936e828f5}, ! Handle + CBECS 1980-2004 ClimateZone 3b LAX (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {fc5dd395-b69f-480d-a737-12e4d7e6f702}, ! Wall Construction Name + {91138a30-0037-49e7-ab7a-0b60734dcd50}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {e1fd9e94-75de-4cab-b282-7c6f058e87f1}, ! Handle + CBECS 1980-2004 ClimateZone 3c (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {cf2acecb-928f-43e5-85d5-1f6b5cfeae6c}, ! Wall Construction Name + {e8fc7e37-3932-4e54-baf4-acdac5b64c6a}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {6de712ef-0b2d-46a2-8f22-d836a3521769}, ! Handle + CBECS 1980-2004 ClimateZone 4a (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {c23573ef-8b97-4653-bff2-b41676a03cc5}, ! Wall Construction Name + {b3945bd3-5dd7-49f6-be6f-6e451ec91d32}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {0c429083-9ee7-474f-807b-7a29b54ae63c}, ! Handle + CBECS 1980-2004 ClimateZone 4b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {ccb790d1-f359-4aeb-a95e-fdabe6dd24b9}, ! Wall Construction Name + {251c04df-5ae8-4673-a3d4-e806b66fe9be}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {8cecab76-5e37-4f12-b298-49543cbf8659}, ! Handle + CBECS 1980-2004 ClimateZone 4c (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {d94ec03c-0bd9-408b-ad79-ea087ec77297}, ! Wall Construction Name + {c54b5d4a-4ddd-4db8-abb8-dbc0dd03f837}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {8bce6ef5-105a-4367-9c07-de93f64396b8}, ! Handle + CBECS 1980-2004 ClimateZone 5a (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {3b6b7c23-b714-4fba-9c17-ed00ba57acf0}, ! Wall Construction Name + {7fa202b0-f318-461c-8eae-a5b2d1eb84ae}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {3e376e1c-11ee-4b45-94ce-64fc8fa0390d}, ! Handle + CBECS 1980-2004 ClimateZone 5b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {3b6b7c23-b714-4fba-9c17-ed00ba57acf0}, ! Wall Construction Name + {1dd518f9-eb33-4254-aa76-a6552d3cedc9}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {deee3275-7856-4b7d-a3d1-80326e9b0a96}, ! Handle + CBECS 1980-2004 ClimateZone 6a (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {f22f386c-97cf-4198-8cd1-1a507b3f019d}, ! Wall Construction Name + {168f3bc4-5c52-4da9-b05c-03145da6c1c6}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {ce0c4479-9bd2-425a-9988-0cf69e0d520e}, ! Handle + CBECS 1980-2004 ClimateZone 6b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {539499a7-a540-434e-a4fd-3b78229d6483}, ! Wall Construction Name + {4e060302-cef7-4ff2-b3a2-81eeb49872a4}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {d6c8c1a2-f11a-4a7d-809e-6c2abe0b8b07}, ! Handle + CBECS 1980-2004 ClimateZone 7 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {f2b14196-7496-41fb-93be-e84398184ab1}, ! Wall Construction Name + {695cd322-1ca8-4080-90aa-8a54c6dc8655}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {0fca0418-fe6b-4372-ad6d-2288041c5960}, ! Handle + CBECS 1980-2004 ClimateZone 8 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {b427a890-b923-4a3a-8e8a-db080692b071}, ! Wall Construction Name + {91f7fb90-098f-4291-9617-60d5557186e7}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {47de92ed-439e-425a-9171-c2dcf43aea0e}, ! Handle + CBECS Before-1980 ClimateZone 1-3b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {a6174430-a1cd-477a-9134-5dd61f9260bf}, ! Wall Construction Name + {c10eb4c4-c6e7-4f7b-bca7-5bc77f986646}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {aa7db894-9f87-474b-abf1-159b4ca8243a}, ! Handle + CBECS Before-1980 ClimateZone 3c (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {bf89d7e8-db22-449a-88e0-ff884fd061dc}, ! Wall Construction Name + {c10eb4c4-c6e7-4f7b-bca7-5bc77f986646}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {f35594f5-b8bc-4c81-a54c-50c3e02485a5}, ! Handle + CBECS Before-1980 ClimateZone 4a (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {1f68eb3f-ed23-4dff-a91d-de23381d46ce}, ! Wall Construction Name + {8985ddac-3fd4-4ddd-af5f-92dfe8b9dcd9}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {c8214d50-64aa-4ca7-9940-a643b34ad7e0}, ! Handle + CBECS Before-1980 ClimateZone 4b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {d0d22f5e-83e3-4f3a-8de2-8e7267bbeaf1}, ! Wall Construction Name + {667121f9-e7cb-49a4-8471-3f862aa1cfce}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {2a69f761-2db8-4b6c-9dc3-3094f1f10b38}, ! Handle + CBECS Before-1980 ClimateZone 4c (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {89eb8c35-e705-4571-82fe-0ff8a0538e47}, ! Wall Construction Name + {810abe11-a5cb-430a-9653-ad13f46223de}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {75ef1bad-35f5-49a8-8dd0-25102fece624}, ! Handle + CBECS Before-1980 ClimateZone 5a (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {ad18d4fd-71ea-4f9d-ae08-612366035c0e}, ! Wall Construction Name + {8d18479b-8637-4d7c-a6f6-e38423de82b6}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {50a8dd6b-0e6a-4c65-b2c1-e6f262b6db4b}, ! Handle + CBECS Before-1980 ClimateZone 5b (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {d6157b0f-6062-4a60-bc7b-6d3e5c720f26}, ! Wall Construction Name + {41b9d48b-f5ce-498f-9a19-af98986e5fbb}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {0376b90f-1758-4ccc-bb0e-cda27e1ce38b}, ! Handle + CBECS Before-1980 ClimateZone 6 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {e2530f8a-6f51-4a69-91a6-8ec59c79528b}, ! Wall Construction Name + {51efc6cc-a4bc-4cd9-90dc-81a6f767d96b}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {fa06a4f2-14f1-4d17-ba4f-dcc2b791e6ce}, ! Handle + CBECS Before-1980 ClimateZone 7 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {e5e01825-3931-491f-8adf-4446ddd810c9}, ! Wall Construction Name + {0714ed05-88eb-44a7-9990-aa7e4a7121ee}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {d5ffa33d-e9a2-4e65-90f6-9accd16b6926}, ! Handle + CBECS Before-1980 ClimateZone 8 (s scho) Exterior DefSurfCons, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {40b8ff50-7261-439e-bd7b-5085147aa3d1}, ! Wall Construction Name + {c3e94101-a60b-4648-bbe9-64c63fbfdca2}; ! Roof Ceiling Construction Name + +OS:DesignSpecification:OutdoorAir, + {354bd757-5dfe-4f93-9dc2-bc3a64ae1530}, ! Handle + SecondarySchool Auditorium Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.0086106, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {d0a4fc11-114a-44d7-8155-c5dc8354d466}, ! Handle + SecondarySchool Cafeteria Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.01076452, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {8f41be0a-67fe-45a0-bdde-3f0463e95a17}, ! Handle + SecondarySchool Classroom Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.0086106, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {b61c75ec-9d59-4c79-979e-620c881ad58a}, ! Handle + SecondarySchool Corridor Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.0, ! Outdoor Air Flow per Person + 0.000508, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {789a59ab-8ea9-4790-b390-a62643f2669b}, ! Handle + SecondarySchool Gym Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.01076452, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {243b93a5-deca-47ac-8a99-36c84687c272}, ! Handle + SecondarySchool Kitchen Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.0086106, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {23afa95b-8d9d-45f6-bfe9-651c6d56c84d}, ! Handle + SecondarySchool Library Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.0086106, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {5f43d874-4a51-4818-b4ca-400d07ecb532}, ! Handle + SecondarySchool Lobby Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.0, ! Outdoor Air Flow per Person + 0.000508, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {f64caea0-6024-405a-8c7f-9d467adb0193}, ! Handle + SecondarySchool Mechanical Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.0, ! Outdoor Air Flow per Person + 0.000254, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {b252ac88-1494-4791-bd30-cbbb600228c3}, ! Handle + SecondarySchool Office Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.01076452, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {1cd7bc75-75ba-4524-9ebf-37ed30894c3a}, ! Handle + SecondarySchool Restroom Outdoor Air, ! Name + Sum, ! Outdoor Air Method + 0.02690876, ! Outdoor Air Flow per Person + 0.0, ! Outdoor Air Flow per Floor Area + 0, ! Outdoor Air Flow Rate + 0, ! Outdoor Air Flow Air Changes per Hour + ; ! Outdoor Air Flow Rate Fraction Schedule Name + +OS:ElectricEquipment, + {d26b7217-95e5-4695-a04a-213fdda88118}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom ElecInst, ! Name + {9cb292f1-1517-4c24-b63e-de3eefda5c15}, ! Electric Equipment Definition Name + {f6c9890d-4fb2-4173-884a-8c6c03ed1670}, ! Space or SpaceType Name + , ! Schedule Name + , ! Multiplier + ElectricEquipment; ! End-Use Subcategory + +OS:ElectricEquipment, + {67ccf6df-1233-431e-a1bf-ab73ae1d1bc6}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria ElecInst, ! Name + {134fa385-4890-431e-9d39-6bd5d941e9aa}, ! Electric Equipment Definition Name + {e04862be-4937-4a7f-a795-7731f14e8f20}, ! Space or SpaceType Name + , ! Schedule Name + , ! Multiplier + ElectricEquipment; ! End-Use Subcategory + +OS:ElectricEquipment, + {a7623dc6-97aa-42ab-8b23-30a50e1dbe63}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym ElecInst, ! Name + {eebec64e-077d-4049-a05d-1ae0c8efaba2}, ! Electric Equipment Definition Name + {bb037295-1692-4a23-a0e4-ab2cba7fa69c}, ! Space or SpaceType Name + , ! Schedule Name + , ! Multiplier + ElectricEquipment; ! End-Use Subcategory + +OS:ElectricEquipment, + {3313cc21-7c64-4513-944f-4416330f3d92}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office ElecInst, ! Name + {a0b9411e-b379-4a48-97ec-dd8dc4e4165a}, ! Electric Equipment Definition Name + {09d69842-de39-414d-b3e6-ca9da2c8a145}, ! Space or SpaceType Name + , ! Schedule Name + , ! Multiplier + ElectricEquipment; ! End-Use Subcategory + +OS:ElectricEquipment:Definition, + {ca25f0fe-52c1-4e16-93b6-f7ab7ba7ee64}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Auditorium ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.659729541681306, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {7df0f35a-f4d0-4b47-85a8-036524a2c71b}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Cafeteria ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 13.993083541722639, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {bd18c850-0606-4736-8744-a505f86ab2e8}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Classroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 7.319459083362611, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {f6a80650-9f52-4c85-87c6-e28860fec6d7}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Corridor ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {e6693771-bf02-463b-8cd6-48ba23e1b834}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Gym ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.659729541681306, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {184544aa-5e55-4c00-8ffb-c139e2e84fbc}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Kitchen ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 161.99685177148132, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {130096b6-1866-41be-ac03-33af9b0b03aa}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Library ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 7.319459083362611, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {070cd2e8-691a-480d-9533-1a500a1b1b6b}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Lobby ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {1956a8b8-75a9-4bff-8422-bf2d013c3000}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Mechanical ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {2f9f1209-e426-4b6c-bab3-a15273895839}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Office ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 7.857654604198097, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {9a7404d1-a879-4f33-a638-4d5a94212db0}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Restroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {623424e0-ffa6-4998-b054-9d715eb452d2}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Auditorium ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.659729541681306, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {aa914409-a089-47c2-bac0-e837d297446d}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Cafeteria ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 13.993083541722639, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {9cb292f1-1517-4c24-b63e-de3eefda5c15}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 7.319459083362611, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {078a6b32-aab3-481b-9c42-ee17c0b73df9}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Corridor ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {d22c5591-c3e0-449a-b19e-83e4fbdbf14d}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Gym ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.659729541681306, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {947bb68b-badf-4cc0-aa03-ed6e22a84bbb}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Kitchen ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 161.99685177148132, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {05b3d9d9-996c-4715-bc8d-0a4463ffb9a6}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Library ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 7.319459083362611, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {b9c740f9-404e-4481-bec5-1e67ce999b65}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Lobby ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {e016166c-1003-422e-a0ea-3bfa6d78c8c7}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Mechanical ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {683fe6d6-f479-4492-914c-02af21ea526c}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Office ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 7.857654604198097, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {79f50dec-1a44-4a68-b816-d67e49bc2efd}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Restroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 2.906255812511625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {18457619-3042-4801-ac01-a639c7ca7cfe}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Auditorium ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 4.951398791686472, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {134fa385-4890-431e-9d39-6bd5d941e9aa}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 19.2673996459104, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {e2696ca8-dcf0-4e03-8db2-15a6302936eb}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Classroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.010436687540041, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {fa4d29a0-769e-47d8-94cc-8d81dc3df050}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Corridor ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {eebec64e-077d-4049-a05d-1ae0c8efaba2}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 4.951398791686472, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {af487fb7-9887-4d21-baa7-7d0d990d331e}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Kitchen ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 222.27475010505574, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {724df75d-f5e4-4075-a6bb-0a3a3d94d4d8}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Library ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.010436687540041, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {b25e1c5a-7be1-49e0-b05b-cdd636ddca2a}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Lobby ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {d64b4559-5ec4-41f6-9c24-51e09cd68d70}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Mechanical ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {a0b9411e-b379-4a48-97ec-dd8dc4e4165a}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.763910416709722, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {7122a500-9eef-4cbf-b458-322350b63fa1}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Restroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {5e66be57-3d4b-4e21-adc1-58a24a178de3}, ! Handle + CBECS 1980-2004 SecondarySchool Auditorium ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 4.951398791686472, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {dc270458-c3dc-4236-9fcf-9844c92f321a}, ! Handle + CBECS 1980-2004 SecondarySchool Cafeteria ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 19.2673996459104, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {12f9d4be-6fc3-4c10-9bca-79241a4b2192}, ! Handle + CBECS 1980-2004 SecondarySchool Classroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.010436687540041, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {7ff03516-22b5-4fe2-859c-b42110209180}, ! Handle + CBECS 1980-2004 SecondarySchool Corridor ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {bedf137f-ea33-4814-be0c-5addf9809450}, ! Handle + CBECS 1980-2004 SecondarySchool Gym ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 4.951398791686472, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {f38c1763-8933-4aea-9ec6-32e9fc6bd21a}, ! Handle + CBECS 1980-2004 SecondarySchool Kitchen ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 222.27475010505574, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {2e7beab3-abed-4116-81e0-46a6fccf60ab}, ! Handle + CBECS 1980-2004 SecondarySchool Library ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.010436687540041, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {be6d3376-8bc4-43aa-a81e-4ab4b089c7fc}, ! Handle + CBECS 1980-2004 SecondarySchool Lobby ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {848f281c-706b-4d78-b89a-be8cef18016a}, ! Handle + CBECS 1980-2004 SecondarySchool Mechanical ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.9826485689374937, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {6f6e620c-b981-4b80-aa02-c22152c9ef3a}, ! Handle + CBECS 1980-2004 SecondarySchool Office ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.763910416709722, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {1de4b0fd-c264-446d-bd30-1407873b5e10}, ! Handle + CBECS 1980-2004 SecondarySchool Restroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {836eb3a1-6f55-49f2-9fa4-85b94d512bf7}, ! Handle + CBECS Before-1980 SecondarySchool Auditorium ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 4.951398791686472, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {691462ab-e2c3-4171-85c2-27e62181285b}, ! Handle + CBECS Before-1980 SecondarySchool Cafeteria ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 19.2673996459104, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {bf5a15db-066f-4e9d-bff2-bd62cd4776ca}, ! Handle + CBECS Before-1980 SecondarySchool Classroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.010436687540041, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {6648642d-0d5a-444a-bae1-3c9258b3f08d}, ! Handle + CBECS Before-1980 SecondarySchool Corridor ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {04d50e16-3cf9-4df3-b336-1d68df7149ca}, ! Handle + CBECS Before-1980 SecondarySchool Gym ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 4.951398791686472, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {a0050365-5ca2-42d6-a460-4b173f6e3ce8}, ! Handle + CBECS Before-1980 SecondarySchool Kitchen ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 222.27475010505574, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {fc327bb0-250b-46ab-a9e2-29b91eec6b7b}, ! Handle + CBECS Before-1980 SecondarySchool Library ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.010436687540041, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {9ef52b31-5247-4b03-9a51-95f8dc803f02}, ! Handle + CBECS Before-1980 SecondarySchool Lobby ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {b3c1d7ae-9ee9-46e6-a594-17ae7c0a453a}, ! Handle + CBECS Before-1980 SecondarySchool Mechanical ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {83fa2db7-8d4e-4ba3-a392-7511ae81e059}, ! Handle + CBECS Before-1980 SecondarySchool Office ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 10.763910416709722, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:ElectricEquipment:Definition, + {fd660c6f-acf9-44de-9a0c-a45ef0a4f173}, ! Handle + CBECS Before-1980 SecondarySchool Restroom ElecDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 3.982646854182597, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Facility, + {df022af2-2bf2-41f4-9493-e3e299105500}; ! Handle + +OS:GasEquipment:Definition, + {d0259b4b-270d-4de3-abc8-d030c9a3b80c}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Kitchen GasDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 815.7967704824299, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:GasEquipment:Definition, + {3556bef2-cc48-4d39-a00b-8c1496f550e4}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Kitchen GasDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 815.7967704824299, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:GasEquipment:Definition, + {1b6a2d45-5dd8-4c7a-9849-832a064bd655}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Kitchen GasDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 1119.446683337811, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:GasEquipment:Definition, + {3c4dcc68-bfbf-47fa-9a42-5cd579bfae90}, ! Handle + CBECS 1980-2004 SecondarySchool Kitchen GasDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 1119.446683337811, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:GasEquipment:Definition, + {5a294f81-2dd6-472e-b2c2-ada9924e3514}, ! Handle + CBECS Before-1980 SecondarySchool Kitchen GasDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Design Level + 1119.446683337811, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights, + {4d1001e9-fb7b-411b-9650-3999155023ce}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom LightsInst, ! Name + {44525264-5ae2-41c3-b016-7955327fad5e}, ! Lights Definition Name + {f6c9890d-4fb2-4173-884a-8c6c03ed1670}, ! Space or SpaceType Name + , ! Schedule Name + , ! Fraction Replaceable + , ! Multiplier + Lights; ! End-Use Subcategory + +OS:Lights, + {d811ed80-6981-41c6-9da5-52060223aaf5}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria LightsInst, ! Name + {fb0bbd35-8296-42d5-84bb-8ed9872105dd}, ! Lights Definition Name + {e04862be-4937-4a7f-a795-7731f14e8f20}, ! Space or SpaceType Name + , ! Schedule Name + , ! Fraction Replaceable + , ! Multiplier + Lights; ! End-Use Subcategory + +OS:Lights, + {6eb556de-9f7e-46e8-a129-b29eb3398010}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym LightsInst, ! Name + {e50d0f72-131e-4259-ab72-d003add3be06}, ! Lights Definition Name + {bb037295-1692-4a23-a0e4-ab2cba7fa69c}, ! Space or SpaceType Name + , ! Schedule Name + , ! Fraction Replaceable + , ! Multiplier + Lights; ! End-Use Subcategory + +OS:Lights, + {26ac450f-ff2d-420a-bfe7-26d2a8a36dbe}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office LightsInst, ! Name + {a6db923d-710c-4c8e-b921-735e617d3c30}, ! Lights Definition Name + {09d69842-de39-414d-b3e6-ca9da2c8a145}, ! Space or SpaceType Name + , ! Schedule Name + , ! Fraction Replaceable + , ! Multiplier + Lights; ! End-Use Subcategory + +OS:Lights:Definition, + {29f57943-2770-4561-9942-e99a5166f28c}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Auditorium LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 8.718767437534876, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {60a07690-5be2-4f39-ac0e-6ee7c3ee6d56}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Cafeteria LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.562527125054249, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {9727faac-ae45-4c3b-a8ed-2c6b0aba474f}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Classroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.562527125054249, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {37292e39-8e47-4db0-9fb2-89316c37221d}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Corridor LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 4.843759687519375, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {c9dd54f0-21ec-484b-aff0-cc278c8af722}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Gym LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.562527125054249, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {59746ef9-a33a-4d71-b414-07f872fde902}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Kitchen LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 11.6250232500465, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {28c5f5e6-c784-47fa-b900-0dcc031701a1}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Library LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 12.593775187550376, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {76f82b36-a529-42f0-b484-8ab1748fab17}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Lobby LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 12.593775187550376, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {ee8ae907-5ca5-43f9-b73b-07b169f589f6}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Mechanical LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 14.531279062558125, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {21a96da2-3c26-458d-b0d3-24bcda47f9da}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Office LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 10.656271312542625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {7883ccfb-5011-46f0-bf5b-e2b2801a62e6}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Restroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 8.718767437534876, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {74892244-c94f-4188-8c95-4d62c144754b}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Auditorium LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 8.718767437534876, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {1f7dd48b-f1cb-4361-a46c-852765630b8e}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Cafeteria LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.562527125054249, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {44525264-5ae2-41c3-b016-7955327fad5e}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.562527125054249, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {b80e26dd-4b13-44b8-82f1-a54d6fee9047}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Corridor LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 4.843759687519375, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {7b9be7e7-bdd6-4be1-90ee-75f5ae14f60a}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Gym LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.562527125054249, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {6bd8b006-1847-4cff-bd93-6a0fb168db98}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Kitchen LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 11.6250232500465, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {71e61e74-0148-489a-9938-8009726549fc}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Library LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 12.593775187550376, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {ffc6209c-4631-46fc-9fb0-5c37f9e25c13}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Lobby LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 12.593775187550376, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {92089228-23b2-4a3d-b931-d62d50674755}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Mechanical LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 14.531279062558125, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {017982c3-c288-4188-a984-60fb32a32d82}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Office LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 10.656271312542625, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {c611e62b-a3a3-4653-b114-ea1a5bb58737}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Restroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 8.718767437534876, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {644b1a1a-9726-4716-86f4-84cb7e6d6197}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Auditorium LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 9.68751937503875, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {fb0bbd35-8296-42d5-84bb-8ed9872105dd}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 15.06947458339361, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {fe367cbd-a800-4eaa-9992-d13225a7d935}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Classroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 15.06947458339361, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {ae1d8a42-5060-46cc-b503-af1d489e9b4b}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Corridor LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 5.381955208354861, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {e50d0f72-131e-4259-ab72-d003add3be06}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 15.06947458339361, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {ac691bea-8b23-4818-90ed-01330bf171cd}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Kitchen LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 12.916692500051665, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {09604ad9-1771-4c99-839c-6d39f193a162}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Library LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.993083541722639, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {b6cf8c58-f221-4f27-b1db-273ee6ed7f87}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Lobby LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 13.993083541722639, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {1cfb0d7d-5a2f-431c-95f5-1ed4f363fe22}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Mechanical LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 16.145865625064584, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {a6db923d-710c-4c8e-b921-735e617d3c30}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 11.840301458380695, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {248bc6c8-a661-460f-b55b-97e2a53a22d0}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Restroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 9.68751937503875, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {859216df-83b2-44b9-b3fb-78da7970b275}, ! Handle + CBECS 1980-2004 SecondarySchool Auditorium LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 12.05557966671489, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {449c9ddc-119c-4d27-a5b2-41302a206e51}, ! Handle + CBECS 1980-2004 SecondarySchool Cafeteria LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 14.423639958391028, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {9fcfa221-e4ec-434b-b7bc-4fe175f9f3a4}, ! Handle + CBECS 1980-2004 SecondarySchool Classroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 21.527820833419444, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {547ccfa8-e592-46a9-8f47-6692d92241ad}, ! Handle + CBECS 1980-2004 SecondarySchool Corridor LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 9.25696295837036, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {a196f6a5-8ad0-4d17-a1f7-1b7f54fef38f}, ! Handle + CBECS 1980-2004 SecondarySchool Gym LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 11.409745041712306, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {32ae3010-99fc-45f7-a583-95b93fc36e1a}, ! Handle + CBECS 1980-2004 SecondarySchool Kitchen LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 16.791700250067166, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {11fabd51-f326-4aae-97d8-fb8d398f2499}, ! Handle + CBECS 1980-2004 SecondarySchool Library LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 16.361143833398778, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {4ac4db73-41a2-4d68-b0dd-b074166f1087}, ! Handle + CBECS 1980-2004 SecondarySchool Lobby LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 12.05557966671489, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {62a22543-0b07-4b35-9705-a352928966ca}, ! Handle + CBECS 1980-2004 SecondarySchool Mechanical LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 8.0729362883868117, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {369ea87c-408a-4385-9098-6e0b910f336d}, ! Handle + CBECS 1980-2004 SecondarySchool Office LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 20.12851247924718, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {3f2e1f8a-411a-49b2-a346-0f8482062c9a}, ! Handle + CBECS 1980-2004 SecondarySchool Restroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 9.579880270871653, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {de105eb0-b976-42d2-bd9b-3ac29bfa3975}, ! Handle + CBECS Before-1980 SecondarySchool Auditorium LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 15.607670104229097, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {1ef6f563-8180-4763-967b-5fd0dd672001}, ! Handle + CBECS Before-1980 SecondarySchool Cafeteria LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 39.826468541825975, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {bbca227f-3be2-4704-bd3f-d09bf83a180c}, ! Handle + CBECS Before-1980 SecondarySchool Classroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 31.215340208458194, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {8bef7a3e-67e8-48bf-b0f4-a78937e554d6}, ! Handle + CBECS Before-1980 SecondarySchool Corridor LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 7.534737291696805, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {21774094-ab23-4aa0-aa76-e5cb7e796e9b}, ! Handle + CBECS Before-1980 SecondarySchool Gym LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 8.611128333367779, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {05278dcf-7f95-44d6-8063-b35b75cb3991}, ! Handle + CBECS Before-1980 SecondarySchool Kitchen LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 24.11115933342978, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {fcc70569-557c-4248-92a7-d2ea4fa2a809}, ! Handle + CBECS Before-1980 SecondarySchool Library LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 31.215340208458194, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {b8c9eee7-a552-4f51-8749-5040f25b95a5}, ! Handle + CBECS Before-1980 SecondarySchool Lobby LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 14.208361750056834, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {d28daaff-fe88-4a87-a624-2a43a8bafe09}, ! Handle + CBECS Before-1980 SecondarySchool Mechanical LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 6.458346250025833, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {29cb981a-2486-4870-8d1d-c8ec53f644c5}, ! Handle + CBECS Before-1980 SecondarySchool Office LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 31.215340208458194, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Lights:Definition, + {f197e283-f2e9-49b3-a318-a9054e9153f0}, ! Handle + CBECS Before-1980 SecondarySchool Restroom LightsDef, ! Name + Watts/Area, ! Design Level Calculation Method + 0, ! Lighting Level + 11.6250232500465, ! Watts per Space Floor Area + ; ! Watts per Person + +OS:Material, + {1d218594-792b-458c-975b-cd7996781265}, ! Handle + 000 F08 Metal surface, ! Name + Smooth, ! Roughness + 0.00080000000000000004, ! Thickness + 45.280000000000001, ! Conductivity + 7824, ! Density + 500; ! Specific Heat + +OS:Material, + {1f0b94e3-96e8-4759-9166-250e63a9c9c0}, ! Handle + 000 F16 Acoustic tile, ! Name + MediumSmooth, ! Roughness + 0.019099999999999999, ! Thickness + 0.059999999999999998, ! Conductivity + 368, ! Density + 590; ! Specific Heat + +OS:Material, + {4fe86c6d-f73e-4893-b73f-ddf808c38106}, ! Handle + 000 G01a 19mm gypsum board, ! Name + MediumSmooth, ! Roughness + 0.019, ! Thickness + 0.16, ! Conductivity + 800, ! Density + 1090; ! Specific Heat + +OS:Material, + {9e8fa22b-2f2c-4eb5-bc58-d1eb1139d1e2}, ! Handle + 000 G05 25mm wood, ! Name + MediumSmooth, ! Roughness + 0.025399999999999999, ! Thickness + 0.14999999999999999, ! Conductivity + 608, ! Density + 1630; ! Specific Heat + +OS:Material, + {b17db373-4e6e-4b7d-8516-c410024d24b1}, ! Handle + 000 I01 25mm insulation board, ! Name + MediumRough, ! Roughness + 0.025399999999999999, ! Thickness + 0.029999999999999999, ! Conductivity + 43, ! Density + 1210; ! Specific Heat + +OS:Material, + {af5b7091-c3f8-43a2-8649-aea656cff32a}, ! Handle + 000 I02 50mm insulation board, ! Name + MediumRough, ! Roughness + 0.050799999999999998, ! Thickness + 0.029999999999999999, ! Conductivity + 43, ! Density + 1210; ! Specific Heat + +OS:Material, + {d9860975-db36-40d7-b55a-f0e141209648}, ! Handle + 000 M01 100mm brick, ! Name + MediumRough, ! Roughness + 0.1016, ! Thickness + 0.89000000000000001, ! Conductivity + 1920, ! Density + 790; ! Specific Heat + +OS:Material, + {86b49bae-3be6-4a11-bc69-e43b9b400fdd}, ! Handle + 000 M05 200mm concrete block, ! Name + MediumRough, ! Roughness + 0.20319999999999999, ! Thickness + 1.1100000000000001, ! Conductivity + 800, ! Density + 920; ! Specific Heat + +OS:Material, + {2be9922c-b8c7-43fc-b6fb-130ba70b23ad}, ! Handle + 000 M11 100mm lightweight concrete, ! Name + MediumRough, ! Roughness + 0.1016, ! Thickness + 0.53000000000000003, ! Conductivity + 1280, ! Density + 840; ! Specific Heat + +OS:Material, + {67eea8d7-e2f1-42c7-bf4c-18e4532c3836}, ! Handle + 000 M15 200mm heavyweight concrete, ! Name + MediumRough, ! Roughness + 0.20319999999999999, ! Thickness + 1.95, ! Conductivity + 2240, ! Density + 900; ! Specific Heat + +OS:Material, + {a06a8b61-4792-4aee-bfa9-1bda55fcb204}, ! Handle + 1/2IN Gypsum, ! Name + Smooth, ! Roughness + 0.012699999999999999, ! Thickness + 0.16, ! Conductivity + 784.89999999999998, ! Density + 830, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.92000000000000004, ! Solar Absorptance + 0.92000000000000004; ! Visible Absorptance + +OS:Material, + {4cd4effd-5f1c-46b5-a07d-8a26ca4ca7e5}, ! Handle + 1IN Stucco, ! Name + Smooth, ! Roughness + 0.0253, ! Thickness + 0.69179999999999997, ! Conductivity + 1858, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.92000000000000004, ! Solar Absorptance + 0.92000000000000004; ! Visible Absorptance + +OS:Material, + {dd24ae63-11e1-4cd9-9939-7aae784324d8}, ! Handle + 8IN CONCRETE HW RefBldg, ! Name + Rough, ! Roughness + 0.20319999999999999, ! Thickness + 1.3109999999999999, ! Conductivity + 2240, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {85a770e5-d485-45d1-b263-003ded55d609}, ! Handle + 8IN Concrete HW, ! Name + MediumRough, ! Roughness + 0.20330000000000001, ! Thickness + 1.7296, ! Conductivity + 2243, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.65000000000000002, ! Solar Absorptance + 0.65000000000000002; ! Visible Absorptance + +OS:Material, + {f540da24-ef80-427d-ad40-f8507345b349}, ! Handle + AtticFloor Insulation, ! Name + MediumRough, ! Roughness + 0.2379, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {c20942b9-37de-435d-86ad-c3fc584ce8e0}, ! Handle + AtticFloor NonRes Insulation-1.76, ! Name + MediumRough, ! Roughness + 0.066610119320183195, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {40b59514-ff72-4c51-84fb-b7736f31b538}, ! Handle + AtticFloor NonRes Insulation-2.00, ! Name + MediumRough, ! Roughness + 0.078378027354382193, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {94733413-a109-4816-8e36-d55a91398732}, ! Handle + AtticFloor NonRes Insulation-2.38, ! Name + MediumRough, ! Roughness + 0.096931035516407596, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {447c32b2-6b85-4e77-b4c5-b8f411adeb04}, ! Handle + AtticFloor NonRes Insulation-2.45, ! Name + MediumRough, ! Roughness + 0.100170449639936, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f63a12b5-5b3b-4431-a7d1-6102de327439}, ! Handle + AtticFloor NonRes Insulation-2.67, ! Name + MediumRough, ! Roughness + 0.111066660782713, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {20e542e2-9a72-4e02-a2e0-4c2493ad98ee}, ! Handle + AtticFloor NonRes Insulation-2.75, ! Name + MediumRough, ! Roughness + 0.115152739961254, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {77b26504-2009-4b81-bdad-8f821d1a00f9}, ! Handle + AtticFloor NonRes Insulation-2.99, ! Name + MediumRough, ! Roughness + 0.12657991054531001, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {9f389579-0d9c-495f-8ae3-382eaac3cd7f}, ! Handle + AtticFloor NonRes Insulation-3.04, ! Name + MediumRough, ! Roughness + 0.129101768881102, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {395a9280-7ad1-4a3d-886e-3bdc54706855}, ! Handle + AtticFloor NonRes Insulation-3.32, ! Name + MediumRough, ! Roughness + 0.14581376530235901, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {1f77fbf0-7ad4-4450-9382-1eb1554a444c}, ! Handle + AtticFloor NonRes Insulation-3.45, ! Name + MediumRough, ! Roughness + 0.152199114340523, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {0dde938b-bdaf-489d-ae05-9841769cc73e}, ! Handle + AtticFloor NonRes Insulation-3.59, ! Name + MediumRough, ! Roughness + 0.15910571636139501, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {16b6d464-339f-4e73-871a-b446bcb1856a}, ! Handle + AtticFloor NonRes Insulation-3.67, ! Name + MediumRough, ! Roughness + 0.160099610925208, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3787390a-031c-4c3c-a80b-03e435f686c6}, ! Handle + AtticFloor NonRes Insulation-3.83, ! Name + MediumRough, ! Roughness + 0.167916458049374, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {14f95637-0415-4665-a114-78d9a1e5550f}, ! Handle + AtticFloor NonRes Insulation-3.91, ! Name + MediumRough, ! Roughness + 0.17476068094203701, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {55e7acf8-273f-4291-abd7-a194649038aa}, ! Handle + AtticFloor NonRes Insulation-4.40, ! Name + MediumRough, ! Roughness + 0.196057107696372, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {b4b47bd6-95ee-47ee-ab56-bc441826b03c}, ! Handle + AtticFloor NonRes Insulation-5.18, ! Name + MediumRough, ! Roughness + 0.30260955835061898, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {0b38724a-9bfa-4d69-842f-7080bc1fb7ba}, ! Handle + AtticFloor NonRes Insulation-5.68, ! Name + MediumRough, ! Roughness + 0.261367984993012, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3349792b-38e7-4fa2-a666-a7d07edf14ba}, ! Handle + AtticFloor NonRes Insulation-6.52, ! Name + MediumRough, ! Roughness + 0.30260955835061998, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8b86b4b2-e6c5-4ff6-84dd-c3a51748e996}, ! Handle + AtticFloor Res Insulation-2.05, ! Name + MediumRough, ! Roughness + 0.080658629686591293, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {38c2d62f-b193-4c3e-902e-fe3190e77900}, ! Handle + AtticFloor Res Insulation-2.37, ! Name + MediumRough, ! Roughness + 0.096537354632839606, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {60a25b0b-4187-43c5-8e39-81a368f55a0c}, ! Handle + AtticFloor Res Insulation-2.93, ! Name + MediumRough, ! Roughness + 0.124142114154045, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {aed17da6-63d5-4b8f-8f07-4b30d5fb9ae2}, ! Handle + IEAD NonRes Roof Insulation-1.76, ! Name + MediumRough, ! Roughness + 0.073980502979871604, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {140ca8f8-47f4-49f5-b334-453151c3836f}, ! Handle + IEAD NonRes Roof Insulation-1.98, ! Name + MediumRough, ! Roughness + 0.084646546965924593, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {db899a26-c96b-4d3c-84bc-a9a1982d3f33}, ! Handle + IEAD NonRes Roof Insulation-2.00, ! Name + MediumRough, ! Roughness + 0.085748411014070505, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {b8b2c44a-a897-40b4-9274-2aae442cfed6}, ! Handle + IEAD NonRes Roof Insulation-2.04, ! Name + MediumRough, ! Roughness + 0.088029013346279605, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d9215034-34f1-449d-a4c8-1435b4a3cd08}, ! Handle + IEAD NonRes Roof Insulation-2.07, ! Name + MediumRough, ! Roughness + 0.0892095604358938, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {224e456d-deb7-4af4-8334-8e1d4eeeb844}, ! Handle + IEAD NonRes Roof Insulation-2.37, ! Name + MediumRough, ! Roughness + 0.103907738292528, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f59f2aff-3f1b-49f8-872e-5f4a23ba58cb}, ! Handle + IEAD NonRes Roof Insulation-2.38, ! Name + MediumRough, ! Roughness + 0.1043014191761, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {55ab0a86-0a8d-4a52-a736-749d935dae58}, ! Handle + IEAD NonRes Roof Insulation-2.44, ! Name + MediumRough, ! Roughness + 0.10754083329962399, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {196873b2-fe90-46f8-b8b4-2b5fd9f1d2ce}, ! Handle + IEAD NonRes Roof Insulation-2.50, ! Name + MediumRough, ! Roughness + 0.110216071059399, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {76b8044d-c15f-4d39-923b-cd18d50eaf30}, ! Handle + IEAD NonRes Roof Insulation-2.67, ! Name + MediumRough, ! Roughness + 0.118437044442401, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a22b9ed6-b9d7-48c5-a520-71b717dc72a3}, ! Handle + IEAD NonRes Roof Insulation-2.75, ! Name + MediumRough, ! Roughness + 0.122523123620942, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f84c6785-3d37-4c66-99a9-3bff4334838e}, ! Handle + IEAD NonRes Roof Insulation-2.79, ! Name + MediumRough, ! Roughness + 0.12466345080970199, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {7af1df9e-4a42-4957-8b56-d9d80e015351}, ! Handle + IEAD NonRes Roof Insulation-2.85, ! Name + MediumRough, ! Roughness + 0.127338688569477, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {745f0704-7782-46c2-9d3d-cfbc967022c0}, ! Handle + IEAD NonRes Roof Insulation-2.93, ! Name + MediumRough, ! Roughness + 0.131512497813733, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {b6fd9dc9-1b4b-4590-b2d9-d6731170144a}, ! Handle + IEAD NonRes Roof Insulation-2.99, ! Name + MediumRough, ! Roughness + 0.13395029420499899, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d0695b3f-29e3-4841-9f7d-5cc390cb67bd}, ! Handle + IEAD NonRes Roof Insulation-3.03, ! Name + MediumRough, ! Roughness + 0.13647215254079001, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f7b481d5-1ff4-4ffe-b67a-5a9c9ffdf008}, ! Handle + IEAD NonRes Roof Insulation-3.38, ! Name + MediumRough, ! Roughness + 0.15318414896204699, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8d7490dd-b2ea-421c-8534-93b3aad23bd9}, ! Handle + IEAD NonRes Roof Insulation-3.51, ! Name + MediumRough, ! Roughness + 0.159569498000212, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {260dfcc8-83c0-4f5a-958d-c86fdd1d2a53}, ! Handle + IEAD NonRes Roof Insulation-3.65, ! Name + MediumRough, ! Roughness + 0.16647610002108301, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {0adc43b2-4e37-43c1-9970-77d58c387ef0}, ! Handle + IEAD NonRes Roof Insulation-3.66, ! Name + MediumRough, ! Roughness + 0.167469994584897, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {5dc32f3b-fcea-4d2a-96ce-b840610baf65}, ! Handle + IEAD NonRes Roof Insulation-3.72, ! Name + MediumRough, ! Roughness + 0.17014523234467099, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a1b53888-4d6a-4a54-afad-4bc86bda8dd5}, ! Handle + IEAD NonRes Roof Insulation-3.83, ! Name + MediumRough, ! Roughness + 0.175286841709063, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {7e92fb7d-7bd5-4a94-989d-3d9605ee925b}, ! Handle + IEAD NonRes Roof Insulation-3.97, ! Name + MediumRough, ! Roughness + 0.18213106460172601, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d1561fe6-9c80-4652-907c-f967c00a8c8d}, ! Handle + IEAD NonRes Roof Insulation-4.41, ! Name + MediumRough, ! Roughness + 0.20342749135606, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3d3a5ac2-7504-478f-b597-66c9816a7a97}, ! Handle + IEAD NonRes Roof Insulation-5.75, ! Name + MediumRough, ! Roughness + 0.26873836865270001, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {e554b4d5-9806-4622-bd5d-cf19b067ac63}, ! Handle + MAT-CC05 4 HW CONCRETE, ! Name + Rough, ! Roughness + 0.1016, ! Thickness + 1.3109999999999999, ! Conductivity + 2240, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8afa97e2-cdf9-4b9b-b482-9f36b58e3df0}, ! Handle + MAT-CC05 8 HW CONCRETE, ! Name + Rough, ! Roughness + 0.20319999999999999, ! Thickness + 1.3109999999999999, ! Conductivity + 2240, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {b571e075-2e93-4678-bd9a-bfd582892ee1}, ! Handle + Mass NonRes Wall Insulation-0.43, ! Name + MediumRough, ! Roughness + 0.00043678142662804302, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {c8cff21b-3056-48b8-acdf-306713dbb3e6}, ! Handle + Mass NonRes Wall Insulation-0.52, ! Name + MediumRough, ! Roughness + 0.0047702530604555003, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {87c45b13-cb93-41e8-b901-54e0e37d9881}, ! Handle + Mass NonRes Wall Insulation-0.61, ! Name + MediumRough, ! Roughness + 0.00914641899609407, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {18c8ccdb-c036-4b38-b49d-ba89546c7ce2}, ! Handle + Mass NonRes Wall Insulation-0.77, ! Name + MediumRough, ! Roughness + 0.0169093568297486, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {122b289c-ffc2-4892-8c42-c1207975f9df}, ! Handle + Mass NonRes Wall Insulation-0.78, ! Name + MediumRough, ! Roughness + 0.017743153856326299, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {ad2246a1-090f-45a5-ada5-fc4aaa85e7f0}, ! Handle + Mass NonRes Wall Insulation-0.79, ! Name + MediumRough, ! Roughness + 0.017914380031427101, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {870446bd-828d-40cd-ad0e-52d13acd500f}, ! Handle + Mass NonRes Wall Insulation-0.93, ! Name + MediumRough, ! Roughness + 0.024808486555221599, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {ce7df23e-efb6-4adc-adc5-fc28ec3aa28b}, ! Handle + Mass NonRes Wall Insulation-0.96, ! Name + MediumRough, ! Roughness + 0.026289573378747801, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {90b3d310-a43b-4aff-a560-91aa0c591f35}, ! Handle + Mass NonRes Wall Insulation-0.99, ! Name + MediumRough, ! Roughness + 0.027870508752174599, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d6851d22-d23b-4af1-83e4-dcfe591e050c}, ! Handle + Mass NonRes Wall Insulation-1.01, ! Name + MediumRough, ! Roughness + 0.0287016290627761, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d75c35b5-7b9a-4c1b-b622-7e8d7ada0320}, ! Handle + Mass NonRes Wall Insulation-1.09, ! Name + MediumRough, ! Roughness + 0.032989728056604301, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {84acd8fd-16ef-44a7-ab4b-9c7f4efcd522}, ! Handle + Mass NonRes Wall Insulation-1.13, ! Name + MediumRough, ! Roughness + 0.034707716435541901, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d901e9ce-e0ad-4727-a22e-c98d3ff2ad3d}, ! Handle + Mass NonRes Wall Insulation-1.17, ! Name + MediumRough, ! Roughness + 0.036539478879309799, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {4cea3a88-b653-4148-9530-4df3dfbd8d12}, ! Handle + Mass NonRes Wall Insulation-1.22, ! Name + MediumRough, ! Roughness + 0.0389043473584363, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a81edab3-3b35-48ed-9220-a80685aa3555}, ! Handle + Mass NonRes Wall Insulation-1.26, ! Name + MediumRough, ! Roughness + 0.041029913670032198, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {20f20667-e117-4257-baf6-ecab87e87e34}, ! Handle + Mass NonRes Wall Insulation-1.30, ! Name + MediumRough, ! Roughness + 0.042842896700511002, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {295e2bfe-fe69-4545-83e9-c4f9521ee9af}, ! Handle + Mass NonRes Wall Insulation-1.41, ! Name + MediumRough, ! Roughness + 0.048426884434385802, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3683b4f9-ea08-4624-9f6d-b52efc0262d0}, ! Handle + Mass NonRes Wall Insulation-1.43, ! Name + MediumRough, ! Roughness + 0.0495494599433393, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {c7e608d4-f8ed-44ff-a6a8-4bad9d84d75d}, ! Handle + Mass NonRes Wall Insulation-1.47, ! Name + MediumRough, ! Roughness + 0.051303484176078898, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {18de8fd5-ce43-4dfb-86a4-7ae97ca77b36}, ! Handle + Mass NonRes Wall Insulation-1.69, ! Name + MediumRough, ! Roughness + 0.062367329336436898, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {b9b5dafb-34a2-4832-8f15-0e9b1a6ef48d}, ! Handle + Mass NonRes Wall Insulation-1.76, ! Name + MediumRough, ! Roughness + 0.065686482884544303, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {2a062da2-674a-4ec6-bed2-7b1317449d3a}, ! Handle + Mass NonRes Wall Insulation-1.96, ! Name + MediumRough, ! Roughness + 0.075275148690188004, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {c04e605c-13b9-4d84-8928-6246e812f5e6}, ! Handle + Mass NonRes Wall Insulation-2.20, ! Name + MediumRough, ! Roughness + 0.087260980947242495, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {1a649724-b88f-49ac-8cff-30bb11629143}, ! Handle + Mass NonRes Wall Insulation-2.23, ! Name + MediumRough, ! Roughness + 0.088626455508172705, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {e7e84922-5a9e-48a5-a9e5-afd9baa53d1d}, ! Handle + Mass NonRes Wall Insulation-2.48, ! Name + MediumRough, ! Roughness + 0.100934958592615, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {5c087e08-0436-490a-b337-e1012a55954e}, ! Handle + Mass NonRes Wall Insulation-2.89, ! Name + MediumRough, ! Roughness + 0.120860609077674, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d6e8838b-7907-47eb-a3c1-8927c163415c}, ! Handle + Mass NonRes Wall Insulation-3.75, ! Name + MediumRough, ! Roughness + 0.16300124010352299, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {70477a34-7eba-45eb-a4de-cf012d9d7b22}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.54, ! Name + MediumRough, ! Roughness + 0.0153459874049154, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {48426b5b-8855-49b8-bc32-91a25f31da9e}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.57, ! Name + MediumRough, ! Roughness + 0.0169093568297486, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {71b3c0a8-0c7d-45dd-b33b-5bc1ce676b91}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.59, ! Name + MediumRough, ! Roughness + 0.017743153856326299, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {4ba4ab3b-5a4e-46b0-bbe9-babcc81b1f1f}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.61, ! Name + MediumRough, ! Roughness + 0.0186148507477484, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {83bbe90d-602f-4224-9893-83136b51bf4d}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.77, ! Name + MediumRough, ! Roughness + 0.026289573378747801, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {6fd59db3-0b7b-43cf-954e-74663858468e}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.80, ! Name + MediumRough, ! Roughness + 0.027870508752174599, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {98d65f2b-d4ce-406c-929a-738279b6e635}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.81, ! Name + MediumRough, ! Roughness + 0.0287016290627761, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f82bb960-61d1-4a6f-a562-557a26f190e6}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.90, ! Name + MediumRough, ! Roughness + 0.032989728056604301, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {85f8f973-3c89-4211-af04-33d272908153}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.91, ! Name + MediumRough, ! Roughness + 0.033324735790497099, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f2383d9e-2816-4bc0-8f83-e6d6b94d4b0a}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.94, ! Name + MediumRough, ! Roughness + 0.034707716435541901, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d6141305-51b8-4323-b5a2-535ee8c3bb8b}, ! Handle + Metal Building Semi-Cond Wall Insulation-0.98, ! Name + MediumRough, ! Roughness + 0.036920485467613499, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {21cf61df-a7d6-458c-a896-50cd1bc3895e}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.02, ! Name + MediumRough, ! Roughness + 0.0389043473584363, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d66ed090-4246-4a1c-9810-c2b53be4315b}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.10, ! Name + MediumRough, ! Roughness + 0.042842896700511002, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {fb697fab-8967-4d6e-80b1-74d1e710f97a}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.12, ! Name + MediumRough, ! Roughness + 0.043789977388074601, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {7b77ac30-6a89-4e1d-b9da-9ae43d2c2fba}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.16, ! Name + MediumRough, ! Roughness + 0.045771561595899901, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {e1891fbc-6eb3-4f15-86cf-bea124d394cf}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.22, ! Name + MediumRough, ! Roughness + 0.048426884434385802, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a9ff92d5-25f5-4f59-a507-2af6536d5ebc}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.24, ! Name + MediumRough, ! Roughness + 0.0495494599433393, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3d460e61-5e0a-40f6-b397-bf8990c81085}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.37, ! Name + MediumRough, ! Roughness + 0.055758395280470899, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {30256185-eaf7-4da2-a000-f392993319eb}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.57, ! Name + MediumRough, ! Roughness + 0.065686482884544303, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {1d71daf6-04e0-4bb4-8cc9-5d2ecd6c19f0}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.72, ! Name + MediumRough, ! Roughness + 0.073190656123743703, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {1b906aff-1e98-471c-803d-42114d0a793f}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.79, ! Name + MediumRough, ! Roughness + 0.076352526870597404, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {9fd0362a-6a04-4b8c-ac16-52e57ea164b3}, ! Handle + Metal Building Semi-Cond Wall Insulation-1.96, ! Name + MediumRough, ! Roughness + 0.084629944598133, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {df03566f-4b4b-4bd3-a213-43d0a2f7bd6f}, ! Handle + Metal Building Semi-Cond Wall Insulation-2.25, ! Name + MediumRough, ! Roughness + 0.099246813204296999, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {1de98b0b-94f6-4f17-9790-8d7b296f374b}, ! Handle + Metal Building Semi-Cond Wall Insulation-2.52, ! Name + MediumRough, ! Roughness + 0.112154632558048, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f3bdb7b6-e1f4-47fa-ac02-68c81b45d2ca}, ! Handle + Metal Building Semi-Cond Wall Insulation-2.85, ! Name + MediumRough, ! Roughness + 0.128178132445463, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {54da9b7c-0304-45b8-a392-2f28e6f465a8}, ! Handle + Metal Building Semi-Cond Wall Insulation-3.72, ! Name + MediumRough, ! Roughness + 0.17116180674662401, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3d133575-ec45-479e-9b7d-5828520e7eb2}, ! Handle + Metal Decking, ! Name + MediumSmooth, ! Roughness + 0.0015, ! Thickness + 45.006, ! Conductivity + 7680, ! Density + 418.39999999999998, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.29999999999999999; ! Visible Absorptance + +OS:Material, + {fc972994-dd0e-4437-a233-1355903fd496}, ! Handle + Metal Roofing, ! Name + MediumSmooth, ! Roughness + 0.0015, ! Thickness + 45.006, ! Conductivity + 7680, ! Density + 418.39999999999998, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.29999999999999999, ! Solar Absorptance + 0.29999999999999999; ! Visible Absorptance + +OS:Material, + {44f248c4-37da-42ad-8773-1bf3e9ab646b}, ! Handle + Metal Semi-Cond Roof Insulation-1.05, ! Name + MediumRough, ! Roughness + 0.042267330190631398, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8c500a1c-ebaa-4936-b9c8-b35ca266df1a}, ! Handle + Metal Semi-Cond Roof Insulation-1.76, ! Name + MediumRough, ! Roughness + 0.076889877979871596, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {47438003-dd17-400b-9a25-727cda295f7c}, ! Handle + Metal Semi-Cond Roof Insulation-1.81, ! Name + MediumRough, ! Roughness + 0.079558888049483703, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {2ecd27a2-6bf0-4359-9c23-e67031970553}, ! Handle + Metal Semi-Cond Roof Insulation-1.87, ! Name + MediumRough, ! Roughness + 0.082234125809258193, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {377ea17b-1b3e-40e1-a032-5869f41470d7}, ! Handle + Metal Semi-Cond Roof Insulation-2.00, ! Name + MediumRough, ! Roughness + 0.088657786014070594, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d37b5d62-6f0d-4c6b-95d6-8b13b63732fe}, ! Handle + Metal Semi-Cond Roof Insulation-2.38, ! Name + MediumRough, ! Roughness + 0.107210794176096, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {31d99a9d-b507-4dd2-afb5-f14c50c1a4e7}, ! Handle + Metal Semi-Cond Roof Insulation-2.44, ! Name + MediumRough, ! Roughness + 0.110450208299624, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8b3150a6-4f07-40e2-ba11-dce1bf83169b}, ! Handle + Metal Semi-Cond Roof Insulation-2.50, ! Name + MediumRough, ! Roughness + 0.113125446059399, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {e565690a-2b79-45d8-a9fb-f4b7253ac35c}, ! Handle + Metal Semi-Cond Roof Insulation-2.67, ! Name + MediumRough, ! Roughness + 0.121346419442401, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a191c6ee-210c-4493-abe7-862988743a1c}, ! Handle + Metal Semi-Cond Roof Insulation-2.75, ! Name + MediumRough, ! Roughness + 0.125432498620942, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {668ad162-42e4-413c-8f03-8d6503bcf245}, ! Handle + Metal Semi-Cond Roof Insulation-2.99, ! Name + MediumRough, ! Roughness + 0.13685966920499901, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {35804027-50dc-4b81-bdb7-41dd81747140}, ! Handle + Metal Semi-Cond Roof Insulation-3.03, ! Name + MediumRough, ! Roughness + 0.13938152754079, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {625e7420-3c4d-435c-b577-b2353eddaf2b}, ! Handle + Metal Semi-Cond Roof Insulation-3.38, ! Name + MediumRough, ! Roughness + 0.15609352396204701, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f96415b5-333d-4546-8f16-551de3d9d7c5}, ! Handle + Metal Semi-Cond Roof Insulation-3.65, ! Name + MediumRough, ! Roughness + 0.169385475021083, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {30c49646-b142-424e-bdf9-4847e11981c8}, ! Handle + Metal Semi-Cond Roof Insulation-3.66, ! Name + MediumRough, ! Roughness + 0.17037936958489699, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {5a58670b-6bb1-47cb-8f75-a6fc524bcfcd}, ! Handle + Metal Semi-Cond Roof Insulation-3.83, ! Name + MediumRough, ! Roughness + 0.17819621670906299, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {85c38964-7e59-4ea0-9adb-34f86b553691}, ! Handle + Metal Semi-Cond Roof Insulation-3.97, ! Name + MediumRough, ! Roughness + 0.185040439601726, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {5247aa24-ee4a-4a26-af3c-2599ac4b156a}, ! Handle + Metal Semi-Cond Roof Insulation-4.41, ! Name + MediumRough, ! Roughness + 0.20633686635605999, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {e2d23c0b-fdc5-4431-8ec6-81e16606e41b}, ! Handle + Metal Semi-Cond Roof Insulation-5.75, ! Name + MediumRough, ! Roughness + 0.271647743652701, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {301a24ff-69ed-468a-8ca5-2f2e2072ff1c}, ! Handle + Metal Siding, ! Name + Smooth, ! Roughness + 0.0015, ! Thickness + 44.960000000000001, ! Conductivity + 7688.8599999999997, ! Density + 410, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.20000000000000001, ! Solar Absorptance + 0.20000000000000001; ! Visible Absorptance + +OS:Material, + {31d26021-19ad-4a4d-a584-52dc9eb24335}, ! Handle + Roof Insulation [18], ! Name + MediumRough, ! Roughness + 0.16930000000000001, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {20c8cf47-d89d-4538-813c-3f6e8520475c}, ! Handle + Roof Insulation [19], ! Name + MediumRough, ! Roughness + 0.18679999999999999, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {de583ecd-8cdf-4470-be9c-15b83f7ae0f4}, ! Handle + Roof Insulation [21], ! Name + MediumRough, ! Roughness + 0.21049999999999999, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {28b93355-ffe3-4311-9fea-4b6673604390}, ! Handle + Roof Insulation [22], ! Name + MediumRough, ! Roughness + 0.23580000000000001, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {e387406e-bc63-4782-8f37-c622cdefed1a}, ! Handle + Roof Insulation [24], ! Name + MediumRough, ! Roughness + 0.2601, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {c8ffc22b-d016-4ebe-958c-5d6d2e47d0eb}, ! Handle + Roof Insulation [25], ! Name + MediumRough, ! Roughness + 0.26300000000000001, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {049623b3-7aca-46bf-a5b2-aaa27e8be5f4}, ! Handle + Roof Insulation [26], ! Name + MediumRough, ! Roughness + 0.29409999999999997, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3442ccdb-832a-4e4b-a578-7f9ac6908079}, ! Handle + Roof Insulation [27], ! Name + MediumRough, ! Roughness + 0.29699999999999999, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {9d81a2c4-7250-4b7f-b4e5-47b45087869b}, ! Handle + Roof Membrane, ! Name + VeryRough, ! Roughness + 0.0094999999999999998, ! Thickness + 0.16, ! Conductivity + 1121.29, ! Density + 1460, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a06f6b6d-25f3-4313-a5ca-d10b08cd01b6}, ! Handle + Steel Frame NonRes Wall Insulation-0.73, ! Name + MediumRough, ! Roughness + 0.020278246975300701, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {9648adf1-1cfd-4959-b2b0-1fe96c98328a}, ! Handle + Steel Frame NonRes Wall Insulation-0.77, ! Name + MediumRough, ! Roughness + 0.021841616400133899, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {5b1e7cea-54b9-4059-b6ed-dc61cb4f8c88}, ! Handle + Steel Frame NonRes Wall Insulation-0.79, ! Name + MediumRough, ! Roughness + 0.0228466396018124, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {ddb0f918-b63e-43c7-9573-49db8064b3e5}, ! Handle + Steel Frame NonRes Wall Insulation-0.80, ! Name + MediumRough, ! Roughness + 0.0235471103181338, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {341d0543-d09b-4c63-b74e-73e67d7ef5be}, ! Handle + Steel Frame NonRes Wall Insulation-0.96, ! Name + MediumRough, ! Roughness + 0.0312218329491331, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {9731b4f8-7399-4f7d-9511-20a11c381c0a}, ! Handle + Steel Frame NonRes Wall Insulation-0.99, ! Name + MediumRough, ! Roughness + 0.032802768322560003, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8ab1d287-c9aa-42f4-85d2-640bd9f31ba7}, ! Handle + Steel Frame NonRes Wall Insulation-1.01, ! Name + MediumRough, ! Roughness + 0.033633888633161503, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {85e4a19d-7001-46a7-974a-fd8668f7b051}, ! Handle + Steel Frame NonRes Wall Insulation-1.09, ! Name + MediumRough, ! Roughness + 0.0379219876269897, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {0a6a8da6-2d64-4c90-99e7-e397f0e06bc4}, ! Handle + Steel Frame NonRes Wall Insulation-1.10, ! Name + MediumRough, ! Roughness + 0.038256995360882499, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3590b762-0a6f-486b-87ec-7fc4ad566046}, ! Handle + Steel Frame NonRes Wall Insulation-1.13, ! Name + MediumRough, ! Roughness + 0.039639976005927301, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {70726037-5c93-4967-b634-86c62e81d254}, ! Handle + Steel Frame NonRes Wall Insulation-1.17, ! Name + MediumRough, ! Roughness + 0.041852745037998899, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {6ceb61ae-d293-448a-9d3c-b756b7b1e3a4}, ! Handle + Steel Frame NonRes Wall Insulation-1.22, ! Name + MediumRough, ! Roughness + 0.0438366069288217, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {e64d2caf-b654-41a7-9307-9ae1abb96f22}, ! Handle + Steel Frame NonRes Wall Insulation-1.30, ! Name + MediumRough, ! Roughness + 0.047775156270896402, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {bc22faab-96f1-4058-b0d6-e90a93cff29a}, ! Handle + Steel Frame NonRes Wall Insulation-1.36, ! Name + MediumRough, ! Roughness + 0.050703821166285301, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f25d0999-b31a-46d8-9999-37c5c19b583d}, ! Handle + Steel Frame NonRes Wall Insulation-1.41, ! Name + MediumRough, ! Roughness + 0.053359144004771202, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {5345e826-350b-4b9e-b3a0-687082089267}, ! Handle + Steel Frame NonRes Wall Insulation-1.42, ! Name + MediumRough, ! Roughness + 0.053915905200000003, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {f90e6959-0fe3-433f-80ca-8908a6b996b6}, ! Handle + Steel Frame NonRes Wall Insulation-1.76, ! Name + MediumRough, ! Roughness + 0.070618742454929703, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {9bf46ef8-7a8d-4d73-b6e9-28b7f87c966f}, ! Handle + Steel Frame NonRes Wall Insulation-1.92, ! Name + MediumRough, ! Roughness + 0.078122915694129103, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {62e3c160-9c4e-499b-82df-50ce9069db82}, ! Handle + Steel Frame NonRes Wall Insulation-1.98, ! Name + MediumRough, ! Roughness + 0.081284786440982706, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d5a9b5b8-e008-4a7a-925f-948053eb59b2}, ! Handle + Steel Frame NonRes Wall Insulation-2.10, ! Name + MediumRough, ! Roughness + 0.087056455264604496, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {73dcf23c-a2ac-416b-8240-d503ff433bdf}, ! Handle + Steel Frame NonRes Wall Insulation-2.15, ! Name + MediumRough, ! Roughness + 0.089562204168518303, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {7afb4b8c-56e4-4f2d-bbf1-f15ae619a45e}, ! Handle + Steel Frame NonRes Wall Insulation-2.44, ! Name + MediumRough, ! Roughness + 0.104179072774682, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a1cc5eca-97c4-4b06-82ee-53b15cd315d0}, ! Handle + Steel Frame NonRes Wall Insulation-2.71, ! Name + MediumRough, ! Roughness + 0.117086892128433, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8a2cd04f-bd95-490d-82e2-1b8453cca103}, ! Handle + Steel Frame NonRes Wall Insulation-2.75, ! Name + MediumRough, ! Roughness + 0.11916136309600101, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8ef4bdaf-b756-4204-9341-3fd6518751f6}, ! Handle + Steel Frame NonRes Wall Insulation-3.04, ! Name + MediumRough, ! Roughness + 0.13311039201584801, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a6d71516-e3d6-4a49-a581-874fe66ca8f3}, ! Handle + Steel Frame NonRes Wall Insulation-3.21, ! Name + MediumRough, ! Roughness + 0.14122619066011999, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a866faf2-2c39-4700-9fee-12c3855558b1}, ! Handle + Steel Frame NonRes Wall Insulation-3.91, ! Name + MediumRough, ! Roughness + 0.17609406631701, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a80d3ead-7a84-4c85-b4aa-8aa340918da0}, ! Handle + Wall Insulation [31], ! Name + MediumRough, ! Roughness + 0.033700000000000001, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {76e750a0-a7e3-47bd-80ae-a931a7bf930f}, ! Handle + Wall Insulation [32], ! Name + MediumRough, ! Roughness + 0.089700000000000002, ! Thickness + 0.044999999999999998, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8d3443dd-9a8d-4e06-a8a5-ad2d9679b841}, ! Handle + Wall Insulation [33], ! Name + MediumRough, ! Roughness + 0.078100000000000003, ! Thickness + 0.044999999999999998, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {0e65f2b1-8ce4-4b8f-8150-be67a72396a0}, ! Handle + Wall Insulation [34], ! Name + MediumRough, ! Roughness + 0.1104, ! Thickness + 0.044999999999999998, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {4c012a31-4819-43e8-9e89-aaa84f968cdf}, ! Handle + Wall Insulation [35], ! Name + MediumRough, ! Roughness + 0.045199999999999997, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {344c86df-4ad8-4b79-99c4-a9a82b13f479}, ! Handle + Wall Insulation [36], ! Name + MediumRough, ! Roughness + 0.056599999999999998, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {d42fdb74-e2b1-4c2c-9c0a-ee6bd2f85113}, ! Handle + Wall Insulation [37], ! Name + MediumRough, ! Roughness + 0.068099999999999994, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {49c4b265-13e9-4279-82a4-ef3c5400eb76}, ! Handle + Wall Insulation [38], ! Name + MediumRough, ! Roughness + 0.1396, ! Thickness + 0.044999999999999998, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {9701a490-5af6-40fb-8bb6-2cd3dfab8fad}, ! Handle + Wall Insulation [39], ! Name + MediumRough, ! Roughness + 0.11840000000000001, ! Thickness + 0.044999999999999998, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8c2dbf29-4947-44a4-a5a8-739f38ac8450}, ! Handle + Wall Insulation [40], ! Name + MediumRough, ! Roughness + 0.079399999999999998, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {fccd3bb6-cd7e-477f-bd00-e4bf7020e5b6}, ! Handle + Wall Insulation [41], ! Name + MediumRough, ! Roughness + 0.14050000000000001, ! Thickness + 0.044999999999999998, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8b9d564a-0e35-4e32-b53c-e53afd802a3e}, ! Handle + Wall Insulation [42], ! Name + MediumRough, ! Roughness + 0.091399999999999995, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {41c10ec3-3e7e-4c92-9de3-4a91a6aeadec}, ! Handle + Wall Insulation [43], ! Name + MediumRough, ! Roughness + 0.1583, ! Thickness + 0.044999999999999998, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {a19e4898-5fe5-480b-a8a4-7c29b605dcd3}, ! Handle + Wall Insulation [44], ! Name + MediumRough, ! Roughness + 0.1104, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {8ff806a1-7f9c-44d1-9fd8-10fab2b3d86b}, ! Handle + Wall Insulation [46], ! Name + MediumRough, ! Roughness + 0.16339999999999999, ! Thickness + 0.043200000000000002, ! Conductivity + 91, ! Density + 837, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.5, ! Solar Absorptance + 0.5; ! Visible Absorptance + +OS:Material, + {86eec0d5-e0d5-4657-86de-b0b705b50ef8}, ! Handle + Wood Frame NonRes Wall Insulation-0.73, ! Name + MediumRough, ! Roughness + 0.020278246975300701, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {193edcb6-bfa0-4540-b193-e52c425ec189}, ! Handle + Wood Frame NonRes Wall Insulation-0.80, ! Name + MediumRough, ! Roughness + 0.0235471103181338, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {1d0cda6a-1450-495b-bb01-1a3737a774a8}, ! Handle + Wood Frame NonRes Wall Insulation-1.10, ! Name + MediumRough, ! Roughness + 0.038256995360882499, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {bbaf4d38-ce87-4a92-83ad-ee7436312e5d}, ! Handle + Wood Frame NonRes Wall Insulation-1.17, ! Name + MediumRough, ! Roughness + 0.041852745037998899, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3ca633fa-2e8d-4d7d-a47f-e106006d7990}, ! Handle + Wood Frame NonRes Wall Insulation-1.36, ! Name + MediumRough, ! Roughness + 0.050703821166285301, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8d0c591c-f3fe-4a36-85fd-6794ba88aed7}, ! Handle + Wood Frame NonRes Wall Insulation-1.76, ! Name + MediumRough, ! Roughness + 0.070618742454929703, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {1e0b94d9-67b7-4df7-b66b-1b5269485dd7}, ! Handle + Wood Frame NonRes Wall Insulation-1.92, ! Name + MediumRough, ! Roughness + 0.078122915694129103, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {3ae6885a-f3c0-45a9-afad-82e1b9ba4d6e}, ! Handle + Wood Frame NonRes Wall Insulation-1.98, ! Name + MediumRough, ! Roughness + 0.081284786440982706, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {63ba25d9-1e37-4342-94d9-f46a865f347f}, ! Handle + Wood Frame NonRes Wall Insulation-2.15, ! Name + MediumRough, ! Roughness + 0.089562204168518303, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {bac9b3cc-98cb-4171-b025-b798df850e24}, ! Handle + Wood Frame NonRes Wall Insulation-2.44, ! Name + MediumRough, ! Roughness + 0.104179072774682, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {b830e255-c086-4cb0-8edd-cb7cdddfdaf8}, ! Handle + Wood Frame NonRes Wall Insulation-2.71, ! Name + MediumRough, ! Roughness + 0.117086892128433, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {70642f3c-f5d0-4b6e-b7eb-539337c61b10}, ! Handle + Wood Frame NonRes Wall Insulation-3.04, ! Name + MediumRough, ! Roughness + 0.13311039201584801, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {fb85a288-c42b-428b-9ea4-fd75691f1b8c}, ! Handle + Wood Frame NonRes Wall Insulation-3.45, ! Name + MediumRough, ! Roughness + 0.15353249971549501, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {d702b8e9-b1ae-4af7-9e80-0a19eeeb317f}, ! Handle + Wood Frame NonRes Wall Insulation-3.91, ! Name + MediumRough, ! Roughness + 0.17609406631701, ! Thickness + 0.049000000000000002, ! Conductivity + 265, ! Density + 836.79999999999995, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Material, + {8ad01829-f7da-4786-8028-167a932883c3}, ! Handle + Wood Siding, ! Name + MediumSmooth, ! Roughness + 0.01, ! Thickness + 0.11, ! Conductivity + 544.62, ! Density + 1210, ! Specific Heat + 0.90000000000000002, ! Thermal Absorptance + 0.78000000000000003, ! Solar Absorptance + 0.78000000000000003; ! Visible Absorptance + +OS:Material:AirGap, + {efc63ac2-25cf-4878-8100-f1e2d1f7e2f5}, ! Handle + 000 F04 Wall air space resistance, ! Name + 0.14999999999999999; ! Thermal Resistance + +OS:Material:AirGap, + {e5ef4582-1ed4-40f7-90f7-b948835c4680}, ! Handle + 000 F05 Ceiling air space resistance, ! Name + 0.17999999999999999; ! Thermal Resistance + +OS:Material:AirWall, + {d796cb9d-bda0-4151-b548-1464bc99e97b}, ! Handle + OS:Material:AirWall 1; ! Name + +OS:Material:NoMass, + {3593aa29-509d-4541-bc90-55d6bc20a274}, ! Handle + CP02 CARPET PAD, ! Name + VeryRough, ! Roughness + 0.2165, ! Thermal Resistance + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.80000000000000004; ! Visible Absorptance + +OS:Material:NoMass, + {ddfb04c9-cb49-421c-b929-8922fd84bc14}, ! Handle + MAT-SHEATH, ! Name + Rough, ! Roughness + 0.36259999999999998, ! Thermal Resistance + 0.90000000000000002, ! Thermal Absorptance + 0.69999999999999996, ! Solar Absorptance + 0.69999999999999996; ! Visible Absorptance + +OS:Output:Variable, + {c0cdba06-0b37-464a-a3de-8f6704cd4f65}, ! Handle + hourly* - Daylighting Reference Point 2 Glare Index, ! Name + *, ! Key Value + Zone Mean Radiant Temperature, ! Variable Name + hourly; ! Reporting Frequency + +OS:Output:Variable, + {d6d7fb75-8008-4319-b3ed-e41645e7e2a5}, ! Handle + hourly* - Surface Outside Face Incident Solar Radiation Rate per Area, ! Name + *, ! Key Value + Zone Air System Sensible Cooling Rate, ! Variable Name + hourly; ! Reporting Frequency + +OS:Output:Variable, + {1c220058-5613-4f9c-9231-ed9275e4a5f9}, ! Handle + hourly* - Daylighting Reference Point 1 Glare Index, ! Name + *, ! Key Value + Zone Mean Air Temperature, ! Variable Name + hourly; ! Reporting Frequency + +OS:Output:Variable, + {794d107b-a9f3-40dc-b4be-da9f219b7116}, ! Handle + hourly* - Zone Mean Radiant Temperature, ! Name + *, ! Key Value + Zone Air System Sensible Heating Rate, ! Variable Name + hourly; ! Reporting Frequency + +OS:People, + {54b085c4-9616-4310-9476-56f9b4d09085}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom PeopInst, ! Name + {85458eaf-debf-4e6c-8344-0f6e6437c345}, ! People Definition Name + {f6c9890d-4fb2-4173-884a-8c6c03ed1670}; ! Space or SpaceType Name + +OS:People, + {b3b905be-5581-4d89-a172-05cc67ac2799}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria PeopInst, ! Name + {65b5cee7-4074-4f57-9f17-575ad3501283}, ! People Definition Name + {e04862be-4937-4a7f-a795-7731f14e8f20}; ! Space or SpaceType Name + +OS:People, + {86e35b58-d34a-4029-8f71-dbad29952458}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym PeopInst, ! Name + {7eeaf889-e95f-4ce7-a289-d1a9bf50c560}, ! People Definition Name + {bb037295-1692-4a23-a0e4-ab2cba7fa69c}; ! Space or SpaceType Name + +OS:People, + {9d5114e2-e54e-4e0b-a19d-8b3023715e88}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office PeopInst, ! Name + {4440c852-0983-44a2-bb72-25961e47f6a0}, ! People Definition Name + {09d69842-de39-414d-b3e6-ca9da2c8a145}; ! Space or SpaceType Name + +OS:People:Definition, + {adaaa059-e5ab-45f7-a372-0e4b4ba54b45}, ! Handle + SecondarySchool Auditorium PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 1.000397834129002, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {65b5cee7-4074-4f57-9f17-575ad3501283}, ! Handle + SecondarySchool Cafeteria PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.719459772252878, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {85458eaf-debf-4e6c-8344-0f6e6437c345}, ! Handle + SecondarySchool Classroom PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.249937999876, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {46c7ec9e-22df-4b21-a2f7-129c7d27da0b}, ! Handle + SecondarySchool Corridor PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.100212005979568, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {7eeaf889-e95f-4ce7-a289-d1a9bf50c560}, ! Handle + SecondarySchool Gym PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 1.000397834129002, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {0b200291-73b4-495e-a84e-2ce61f6743f5}, ! Handle + SecondarySchool Kitchen PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.166625333250666, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {e56b0307-5607-4182-a184-7a29c335e83a}, ! Handle + SecondarySchool Library PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.226042118750904, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {8a9dc87b-24d6-4986-9394-7ebc4462d29f}, ! Handle + SecondarySchool Lobby PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {c926a239-c6d4-4ac1-bf5d-57bc771a1424}, ! Handle + SecondarySchool Mechanical PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.01001043668754, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {4440c852-0983-44a2-bb72-25961e47f6a0}, ! Handle + SecondarySchool Office PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.0500521834377, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:People:Definition, + {b5cc9838-0551-4725-9d95-9038afac117d}, ! Handle + SecondarySchool Restroom PeopDef, ! Name + People/Area, ! Number of People Calculation Method + 0, ! Number of People + 0.099996727771233, ! People per Space Floor Area + , ! Space Floor Area per Person + 0.3; ! Fraction Radiant + +OS:Rendering:Color, + {8f2a3d5a-9cc6-48e4-80db-4747319a30bd}, ! Handle + 000 AtticRoof ClimateZone 1-8 Color, ! Name + 198.9, ! Rendering Red Value + 0.0, ! Rendering Green Value + 131.274; ! Rendering Blue Value + +OS:Rendering:Color, + {7bae279f-a289-4694-ac26-5a556bd6d25d}, ! Handle + 000 ExtSlabCarpet 4in ClimateZone 1-8 Color, ! Name + 198.9, ! Rendering Red Value + 0.0, ! Rendering Green Value + 0.0; ! Rendering Blue Value + +OS:Rendering:Color, + {d814d9b4-b7a3-4c3b-9046-8200081e8e9d}, ! Handle + 000 ExtSlabCarpet 8in ClimateZone 1-8 Color, ! Name + 147.9, ! Rendering Red Value + 0.0, ! Rendering Green Value + 0.0; ! Rendering Blue Value + +OS:Rendering:Color, + {7623b45d-1afd-4e50-a5d4-8973e0f50839}, ! Handle + 000 ExtSlab 4in ClimateZone 1-8 Color, ! Name + 198.9, ! Rendering Red Value + 0.0, ! Rendering Green Value + 0.0; ! Rendering Blue Value + +OS:Rendering:Color, + {6bcc9c6f-d160-46e8-84fe-925510531a02}, ! Handle + 000 ExtSlab 8in ClimateZone 1-8 Color, ! Name + 147.9, ! Rendering Red Value + 0.0, ! Rendering Green Value + 0.0; ! Rendering Blue Value + +OS:Rendering:Color, + {d3a0f803-0902-4452-8351-44cb8ee5fa20}, ! Handle + 000 Exterior Door Color, ! Name + 124.3125, ! Rendering Red Value + 74.5875, ! Rendering Green Value + 89.505; ! Rendering Blue Value + +OS:Rendering:Color, + {cf93bb9a-a948-420e-8623-5dbd25e9063e}, ! Handle + 000 Exterior Floor Color, ! Name + 255.0, ! Rendering Red Value + 40.8, ! Rendering Green Value + 40.7999999999998; ! Rendering Blue Value + +OS:Rendering:Color, + {2f5b9735-dd16-4c9b-aa29-d2a0aa0d89a6}, ! Handle + 000 Exterior Roof Color, ! Name + 255.0, ! Rendering Red Value + 0.0, ! Rendering Green Value + 0.0; ! Rendering Blue Value + +OS:Rendering:Color, + {61d98f2f-703b-40e0-a799-9de5b09dc770}, ! Handle + 000 Exterior Wall Color, ! Name + 142.8, ! Rendering Red Value + 201.144, ! Rendering Green Value + 255.0; ! Rendering Blue Value + +OS:Rendering:Color, + {4e3d8c9a-e205-4b43-97a1-9ed42b4426ed}, ! Handle + 000 Exterior Window Color, ! Name + 198.9, ! Rendering Red Value + 0.0, ! Rendering Green Value + 59.6699999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {dc72bc9f-18f7-440c-b7c2-fe001cfd1243}, ! Handle + 000 Interior Ceiling Color, ! Name + 219.096, ! Rendering Red Value + 142.8, ! Rendering Green Value + 255.0; ! Rendering Blue Value + +OS:Rendering:Color, + {cd92f89b-4f39-4135-b4a2-17275db6be50}, ! Handle + 000 Interior Door Color, ! Name + 168.606, ! Rendering Red Value + 255.0, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {77cbc9c8-66df-4480-8d8c-d5a4529f1e25}, ! Handle + 000 Interior Floor Color, ! Name + 255.0, ! Rendering Red Value + 142.8, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {1210254c-7ac7-419d-a0ba-ce4fee5f6560}, ! Handle + 000 Interior Partition Color, ! Name + 165.24, ! Rendering Red Value + 142.8, ! Rendering Green Value + 255.0; ! Rendering Blue Value + +OS:Rendering:Color, + {813d283b-bc32-489c-b121-283a449f2f77}, ! Handle + 000 Interior Wall Color, ! Name + 142.8, ! Rendering Red Value + 201.144, ! Rendering Green Value + 255.0; ! Rendering Blue Value + +OS:Rendering:Color, + {22291e90-630d-428d-b67b-05ecd302f0f3}, ! Handle + 000 Interior Window Color, ! Name + 235.926, ! Rendering Red Value + 255.0, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {ae99e112-c3ee-41d0-8bef-ee0758bc55b8}, ! Handle + ASHRAE 189.1-2009 AtticFloor ClimateZone 1-8 Color, ! Name + 183.9825, ! Rendering Red Value + 14.9175, ! Rendering Green Value + 126.5004; ! Rendering Blue Value + +OS:Rendering:Color, + {f30f74c2-f870-4426-941b-6f11f3be90fe}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Auditorium Color, ! Name + 236.64, ! Rendering Red Value + 172.686, ! Rendering Green Value + 120.36; ! Rendering Blue Value + +OS:Rendering:Color, + {61fe2ec4-049f-47ca-af3c-e44fec3c96d6}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Cafeteria Color, ! Name + 55.488, ! Rendering Red Value + 179.52, ! Rendering Green Value + 24.48; ! Rendering Blue Value + +OS:Rendering:Color, + {f34b952d-8105-45c4-aef0-35179ecbaaf7}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Classroom Color, ! Name + 236.64, ! Rendering Red Value + 172.686, ! Rendering Green Value + 120.36; ! Rendering Blue Value + +OS:Rendering:Color, + {e85f6bef-91d7-4c0c-9bfb-d792a13d8335}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Corridor Color, ! Name + 179.52, ! Rendering Red Value + 24.48, ! Rendering Green Value + 24.4799999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {0d519839-927f-4e2d-a3ca-a3999b365a7e}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Gym Color, ! Name + 171.5232, ! Rendering Red Value + 236.64, ! Rendering Green Value + 120.36; ! Rendering Blue Value + +OS:Rendering:Color, + {a2384240-d33f-47ca-83d2-572fd8b18cae}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Kitchen Color, ! Name + 75.48, ! Rendering Red Value + 230.52, ! Rendering Green Value + 114.24; ! Rendering Blue Value + +OS:Rendering:Color, + {64b0f625-0627-4941-a1b2-5ad99ad24677}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Library Color, ! Name + 24.48, ! Rendering Red Value + 179.52, ! Rendering Green Value + 164.63616; ! Rendering Blue Value + +OS:Rendering:Color, + {f17d4248-dd6a-43db-9012-8c892c1ddb77}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Lobby Color, ! Name + 230.52, ! Rendering Red Value + 112.6896, ! Rendering Green Value + 75.48; ! Rendering Blue Value + +OS:Rendering:Color, + {35456b2a-49cc-4309-b239-236df468316b}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Mechanical Color, ! Name + 24.48, ! Rendering Red Value + 49.2864, ! Rendering Green Value + 179.52; ! Rendering Blue Value + +OS:Rendering:Color, + {c9018c1e-a72d-4381-a307-cef35f10ad98}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Office Color, ! Name + 120.36, ! Rendering Red Value + 236.64, ! Rendering Green Value + 201.756; ! Rendering Blue Value + +OS:Rendering:Color, + {df096596-1a7a-48d2-b709-91b28eeebced}, ! Handle + ASHRAE 189.1-2009 ClimateZone 1-3 SecondarySchool Restroom Color, ! Name + 179.52, ! Rendering Red Value + 164.016, ! Rendering Green Value + 24.48; ! Rendering Blue Value + +OS:Rendering:Color, + {cefc1a0f-a480-46b5-b9ee-8275aee4b952}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Auditorium Color, ! Name + 236.64, ! Rendering Red Value + 172.686, ! Rendering Green Value + 120.36; ! Rendering Blue Value + +OS:Rendering:Color, + {bea249ab-609e-4986-973f-5a3d0c0d949f}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Cafeteria Color, ! Name + 55.488, ! Rendering Red Value + 179.52, ! Rendering Green Value + 24.48; ! Rendering Blue Value + +OS:Rendering:Color, + {97a30e94-d4ec-4745-82d5-e727e925153f}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom Color, ! Name + 236.64, ! Rendering Red Value + 172.686, ! Rendering Green Value + 120.36; ! Rendering Blue Value + +OS:Rendering:Color, + {791dc87e-d1a0-4c6f-be59-174df3b1d592}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Corridor Color, ! Name + 179.52, ! Rendering Red Value + 24.48, ! Rendering Green Value + 24.4799999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {31c91cc4-ec3d-4ea7-b23c-ca4e81c93e4e}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Gym Color, ! Name + 171.5232, ! Rendering Red Value + 236.64, ! Rendering Green Value + 120.36; ! Rendering Blue Value + +OS:Rendering:Color, + {159e9aa7-7976-47d1-9858-bb314fd80607}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Kitchen Color, ! Name + 75.48, ! Rendering Red Value + 230.52, ! Rendering Green Value + 114.24; ! Rendering Blue Value + +OS:Rendering:Color, + {b310fc0b-cabf-4d52-830f-b637a9a7afa1}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Library Color, ! Name + 24.48, ! Rendering Red Value + 179.52, ! Rendering Green Value + 164.63616; ! Rendering Blue Value + +OS:Rendering:Color, + {3d27ee24-4856-40f2-abdc-12b2e95eb52d}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Lobby Color, ! Name + 230.52, ! Rendering Red Value + 112.6896, ! Rendering Green Value + 75.48; ! Rendering Blue Value + +OS:Rendering:Color, + {087c98bc-1b8b-41e4-8356-4f64b4ce8375}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Mechanical Color, ! Name + 24.48, ! Rendering Red Value + 49.2864, ! Rendering Green Value + 179.52; ! Rendering Blue Value + +OS:Rendering:Color, + {a5a4e33c-19a8-420b-9f36-2cede140a410}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Office Color, ! Name + 120.36, ! Rendering Red Value + 236.64, ! Rendering Green Value + 201.756; ! Rendering Blue Value + +OS:Rendering:Color, + {9ebf72b4-1257-446b-bed4-b8e1e8744554}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Restroom Color, ! Name + 179.52, ! Rendering Red Value + 164.016, ! Rendering Green Value + 24.48; ! Rendering Blue Value + +OS:Rendering:Color, + {8a992e70-c129-403b-8b13-93c9738bc546}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 1 Color, ! Name + 129.8817, ! Rendering Red Value + 14.9175, ! Rendering Green Value + 183.9825; ! Rendering Blue Value + +OS:Rendering:Color, + {4976e445-718a-404e-a33d-90431b9e5d21}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 2-5 Color, ! Name + 150.1695, ! Rendering Red Value + 14.9175, ! Rendering Green Value + 183.9825; ! Rendering Blue Value + +OS:Rendering:Color, + {5b498fa7-bba3-4431-9656-a98e927ab5f9}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 6 Color, ! Name + 183.9825, ! Rendering Red Value + 14.9175, ! Rendering Green Value + 106.2126; ! Rendering Blue Value + +OS:Rendering:Color, + {2ec6f8f3-9084-459e-9f03-aabb569e8e19}, ! Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 7-8 Color, ! Name + 183.9825, ! Rendering Red Value + 14.9175, ! Rendering Green Value + 96.0687; ! Rendering Blue Value + +OS:Rendering:Color, + {7844f75d-587b-41bf-899d-6a75b5418a2a}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 1 Color, ! Name + 180.6726, ! Rendering Red Value + 56.865, ! Rendering Green Value + 238.935; ! Rendering Blue Value + +OS:Rendering:Color, + {759d4320-98ad-459d-928d-676d7094d432}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 2-5 Color, ! Name + 202.521, ! Rendering Red Value + 56.865, ! Rendering Green Value + 238.935; ! Rendering Blue Value + +OS:Rendering:Color, + {f3efafc1-09d6-4a78-a953-808a39c92dd3}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 6 Color, ! Name + 238.935, ! Rendering Red Value + 56.865, ! Rendering Green Value + 155.1828; ! Rendering Blue Value + +OS:Rendering:Color, + {8f58adca-a5ac-4d96-b313-ee029c51cbf9}, ! Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 7-8 Color, ! Name + 238.935, ! Rendering Red Value + 56.865, ! Rendering Green Value + 144.2586; ! Rendering Blue Value + +OS:Rendering:Color, + {0dc90870-35ba-4503-ab69-d1203b74ff16}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 1 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 50.0973, ! Rendering Green Value + 89.6325; ! Rendering Blue Value + +OS:Rendering:Color, + {ba034033-11ee-4894-856c-32d268c2fe48}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 2 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 40.2135, ! Rendering Green Value + 89.6325; ! Rendering Blue Value + +OS:Rendering:Color, + {d2070426-24f1-4339-a28b-b7c43f5cb0e8}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 3 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 20.4459, ! Rendering Green Value + 89.6325; ! Rendering Blue Value + +OS:Rendering:Color, + {5a0f2c49-d318-4bc8-9c7c-b586e648bf1c}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 4 Color, ! Name + 8.91479999999992, ! Rendering Red Value + 7.26749999999999, ! Rendering Green Value + 89.6325; ! Rendering Blue Value + +OS:Rendering:Color, + {ae945c74-2815-4e9e-a0ba-0616bce0578e}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 5 Color, ! Name + 18.7985999999999, ! Rendering Red Value + 7.26749999999999, ! Rendering Green Value + 89.6325; ! Rendering Blue Value + +OS:Rendering:Color, + {a7472de2-df9b-444c-ba18-f44613e6983a}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 6 Color, ! Name + 28.6823999999999, ! Rendering Red Value + 7.26749999999999, ! Rendering Green Value + 89.6325; ! Rendering Blue Value + +OS:Rendering:Color, + {f93eb886-3096-4dde-9fc7-fa3d289767ff}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 7-8 Color, ! Name + 33.6242999999999, ! Rendering Red Value + 7.26749999999999, ! Rendering Green Value + 89.6325; ! Rendering Blue Value + +OS:Rendering:Color, + {2bb65d01-dad4-444d-b7b0-4816799d1144}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 1 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {55f61a60-7f16-473d-a185-fd9e8e250c06}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 2 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {81ca4376-a508-4c8c-847d-d70382485466}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 3 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {fad3dbc6-9b8a-40ce-8081-f814e16f28e3}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 4 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {7486c56c-a900-403f-89a3-1e4eabfa8124}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 5 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {23e60eec-9d05-4168-afb0-bc3cfa277da8}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 6 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {d6a7b659-e448-487b-aadd-160a3d87f6b1}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 7 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {8e7d04ac-0819-4907-941e-c1fa4494a8c6}, ! Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 8 Color, ! Name + 7.26749999999999, ! Rendering Red Value + 89.6325, ! Rendering Green Value + 79.7487; ! Rendering Blue Value + +OS:Rendering:Color, + {5400731e-e096-4b6a-a3fa-9079d02cc13c}, ! Handle + ASHRAE 189.1-2009 ExtWall Metal ClimateZone 1-3 Color, ! Name + 12.24, ! Rendering Red Value + 84.3744, ! Rendering Green Value + 150.96; ! Rendering Blue Value + +OS:Rendering:Color, + {7a9f7259-6873-4a3a-8c3b-8d22d3501db9}, ! Handle + ASHRAE 189.1-2009 ExtWall Metal ClimateZone 4-8 Color, ! Name + 15.0143999999999, ! Rendering Red Value + 12.24, ! Rendering Green Value + 150.96; ! Rendering Blue Value + +OS:Rendering:Color, + {7ed5eb98-f550-40f4-b8e9-c44844f1f7d0}, ! Handle + ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 1-3 Color, ! Name + 17.2125, ! Rendering Red Value + 118.6515, ! Rendering Green Value + 212.2875; ! Rendering Blue Value + +OS:Rendering:Color, + {aa2fa94a-f5ed-4039-903b-f4a0811268a0}, ! Handle + ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 4-8 Color, ! Name + 21.1139999999998, ! Rendering Red Value + 17.2125, ! Rendering Green Value + 212.2875; ! Rendering Blue Value + +OS:Rendering:Color, + {5f2b0115-75bf-4e9f-9d14-c1b9396f6261}, ! Handle + ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 1-4 Color, ! Name + 56.865, ! Rendering Red Value + 151.5414, ! Rendering Green Value + 238.935; ! Rendering Blue Value + +OS:Rendering:Color, + {5cd2f84d-2dfd-4573-bfc9-b2a77d0616d8}, ! Handle + ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 5 Color, ! Name + 82.3547999999998, ! Rendering Red Value + 56.865, ! Rendering Green Value + 238.935; ! Rendering Blue Value + +OS:Rendering:Color, + {5dad2af1-dd1d-4b58-bc98-ba22c9f181f9}, ! Handle + ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 6-8 Color, ! Name + 104.2032, ! Rendering Red Value + 56.865, ! Rendering Green Value + 238.935; ! Rendering Blue Value + +OS:Rendering:Color, + {ab97b6e5-3903-43b9-aad1-d106c7abf6ef}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 1 Color, ! Name + 207.9831, ! Rendering Red Value + 238.935, ! Rendering Green Value + 56.865; ! Rendering Blue Value + +OS:Rendering:Color, + {4ea48022-bbec-4218-b258-cf15497d76d7}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 2 Color, ! Name + 186.1347, ! Rendering Red Value + 238.935, ! Rendering Green Value + 56.865; ! Rendering Blue Value + +OS:Rendering:Color, + {b4437797-7cef-4ceb-96d1-0570c6b264ae}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 3 Color, ! Name + 142.4379, ! Rendering Red Value + 238.935, ! Rendering Green Value + 56.865; ! Rendering Blue Value + +OS:Rendering:Color, + {1da1acaa-abf2-4433-a050-2a2cbf45442b}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 4-5 Color, ! Name + 109.6653, ! Rendering Red Value + 238.935, ! Rendering Green Value + 56.865; ! Rendering Blue Value + +OS:Rendering:Color, + {56908274-fc3a-4d3d-bf2f-aaca6a9f96d2}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 6 Color, ! Name + 65.9684999999999, ! Rendering Red Value + 238.935, ! Rendering Green Value + 56.865; ! Rendering Blue Value + +OS:Rendering:Color, + {4812629c-f75b-422f-b138-bd798604eb7b}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 7-8 Color, ! Name + 56.865, ! Rendering Red Value + 238.935, ! Rendering Green Value + 58.6857; ! Rendering Blue Value + +OS:Rendering:Color, + {617f0af7-5f1d-48cf-9960-70851e9284f2}, ! Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone alt-res 4-5 Color, ! Name + 56.865, ! Rendering Red Value + 238.935, ! Rendering Green Value + 217.0866; ! Rendering Blue Value + +OS:Rendering:Color, + {ae9fc8d2-7a15-4f5a-8c67-4583e48bcf73}, ! Handle + ASHRAE 90.1-2004 AtticFloor ClimateZone 1-5 Color, ! Name + 174.0375, ! Rendering Red Value + 24.8625, ! Rendering Green Value + 123.318; ! Rendering Blue Value + +OS:Rendering:Color, + {4f734284-54dd-47cf-88b4-16c51190397b}, ! Handle + ASHRAE 90.1-2004 AtticFloor ClimateZone 6-8 Color, ! Name + 174.0375, ! Rendering Red Value + 24.8625, ! Rendering Green Value + 24.8624999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {e921346c-db99-4133-9067-806085ec979b}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 1-4 Color, ! Name + 126.3015, ! Rendering Red Value + 24.8625, ! Rendering Green Value + 174.0375; ! Rendering Blue Value + +OS:Rendering:Color, + {8a48315d-f678-4301-8484-4113d3b5bf9e}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 5-6 Color, ! Name + 174.0375, ! Rendering Red Value + 24.8625, ! Rendering Green Value + 123.318; ! Rendering Blue Value + +OS:Rendering:Color, + {8be96dd4-a335-40d8-8b25-f0c43816f7e8}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 7 Color, ! Name + 174.0375, ! Rendering Red Value + 24.8625, ! Rendering Green Value + 96.4665; ! Rendering Blue Value + +OS:Rendering:Color, + {fdbdd6c1-0a2f-43b2-a068-d0e41631ea7d}, ! Handle + ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 8 Color, ! Name + 174.0375, ! Rendering Red Value + 24.8625, ! Rendering Green Value + 87.516; ! Rendering Blue Value + +OS:Rendering:Color, + {0f837524-9b4a-4547-bef4-b29285d9d3c8}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 1 Color, ! Name + 176.817, ! Rendering Red Value + 67.5749999999999, ! Rendering Green Value + 228.225; ! Rendering Blue Value + +OS:Rendering:Color, + {feaeecac-56e4-4538-b080-9a2a15914e6d}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 2 Color, ! Name + 196.095, ! Rendering Red Value + 67.5749999999999, ! Rendering Green Value + 228.225; ! Rendering Blue Value + +OS:Rendering:Color, + {66a12368-1a32-4d8b-b5e7-6ec79de79af0}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 3-4 Color, ! Name + 228.225, ! Rendering Red Value + 67.5749999999999, ! Rendering Green Value + 221.799; ! Rendering Blue Value + +OS:Rendering:Color, + {c7631f0a-0e54-4165-b863-813007dbc8c7}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 5-6 Color, ! Name + 228.225, ! Rendering Red Value + 67.5749999999999, ! Rendering Green Value + 173.604; ! Rendering Blue Value + +OS:Rendering:Color, + {114de8bc-a767-4ffe-8208-1e3615aa9fc0}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 7 Color, ! Name + 228.225, ! Rendering Red Value + 67.5749999999999, ! Rendering Green Value + 144.687; ! Rendering Blue Value + +OS:Rendering:Color, + {c2ac665d-dcc6-4355-b799-bf3c1c0fcc09}, ! Handle + ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 8 Color, ! Name + 228.225, ! Rendering Red Value + 67.5749999999999, ! Rendering Green Value + 135.048; ! Rendering Blue Value + +OS:Rendering:Color, + {45e1dcc5-591f-4946-bbf5-05607f4244f2}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 1-2 Color, ! Name + 12.1125, ! Rendering Red Value + 49.9035, ! Rendering Green Value + 84.7875; ! Rendering Blue Value + +OS:Rendering:Color, + {7d7e2bfd-f9a7-4d13-9ae4-80c00bf7a742}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 3-4 Color, ! Name + 12.1125, ! Rendering Red Value + 23.7405, ! Rendering Green Value + 84.7875; ! Rendering Blue Value + +OS:Rendering:Color, + {b92b35cb-01e6-4ab9-9655-82643f140b76}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 5 Color, ! Name + 22.2869999999999, ! Rendering Red Value + 12.1125, ! Rendering Green Value + 84.7875; ! Rendering Blue Value + +OS:Rendering:Color, + {88bab52e-b838-4a40-870c-f7db3fb30e6e}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 6 Color, ! Name + 31.0079999999999, ! Rendering Red Value + 12.1125, ! Rendering Green Value + 84.7875; ! Rendering Blue Value + +OS:Rendering:Color, + {fbd85bef-0824-4ac4-bcb7-023d2b668fd5}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 7 Color, ! Name + 35.3685, ! Rendering Red Value + 12.1125, ! Rendering Green Value + 84.7875; ! Rendering Blue Value + +OS:Rendering:Color, + {40f3bfef-bf87-49ab-8404-488a213a36c4}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone 8 Color, ! Name + 39.729, ! Rendering Red Value + 12.1125, ! Rendering Green Value + 84.7875; ! Rendering Blue Value + +OS:Rendering:Color, + {e93362f6-cd75-465d-badb-8772a9a878dc}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 1-2 Color, ! Name + 12.1125, ! Rendering Red Value + 84.7875, ! Rendering Green Value + 76.0665; ! Rendering Blue Value + +OS:Rendering:Color, + {668374ea-48a1-404b-b05e-6b526689ec1d}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 3 Color, ! Name + 12.1125, ! Rendering Red Value + 84.7875, ! Rendering Green Value + 76.0665; ! Rendering Blue Value + +OS:Rendering:Color, + {f8b15c3c-f345-4aff-ae1c-b30291af6ae1}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 4 Color, ! Name + 12.1125, ! Rendering Red Value + 84.7875, ! Rendering Green Value + 76.0665; ! Rendering Blue Value + +OS:Rendering:Color, + {ab8dbd3a-a4c1-43cd-9ab7-6e6ba514b9e8}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 5-6 Color, ! Name + 12.1125, ! Rendering Red Value + 84.7875, ! Rendering Green Value + 76.0665; ! Rendering Blue Value + +OS:Rendering:Color, + {75dcefd3-517a-4efa-ba1a-70a1b1aca1c0}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 7 Color, ! Name + 12.1125, ! Rendering Red Value + 84.7875, ! Rendering Green Value + 76.0665; ! Rendering Blue Value + +OS:Rendering:Color, + {19194a1d-e464-4609-a589-e7a2a05c0cfe}, ! Handle + ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 8 Color, ! Name + 12.1125, ! Rendering Red Value + 84.7875, ! Rendering Green Value + 76.0665; ! Rendering Blue Value + +OS:Rendering:Color, + {1421f1b7-085d-4154-a2b6-fac857076801}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 1 Color, ! Name + 20.4, ! Rendering Red Value + 84.048, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {5f58ba6c-8132-413b-91d3-35d370a9253c}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 2-3 Color, ! Name + 20.4, ! Rendering Red Value + 69.36, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {70350214-8af5-4d2c-a46d-108f5f9d2f92}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 4 Color, ! Name + 22.8479999999999, ! Rendering Red Value + 20.4, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {9c054d76-e292-4f75-95ac-375b2276806a}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 5 Color, ! Name + 37.5359999999999, ! Rendering Red Value + 20.4, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {f8a91a38-ff32-45da-b4cd-cee4a1bc3ba2}, ! Handle + ASHRAE 90.1-2004 ExtWall Metal ClimateZone 6-8 Color, ! Name + 52.2239999999999, ! Rendering Red Value + 20.4, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {7f007c93-c5ee-439c-bc52-21c8f948c4d2}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 1-4 Color, ! Name + 28.6875, ! Rendering Red Value + 118.1925, ! Rendering Green Value + 200.8125; ! Rendering Blue Value + +OS:Rendering:Color, + {b455493b-cf36-496d-b6c8-16c0685575ee}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 5-6 Color, ! Name + 52.7849999999999, ! Rendering Red Value + 28.6875, ! Rendering Green Value + 200.8125; ! Rendering Blue Value + +OS:Rendering:Color, + {833e8d8b-56c8-4ea7-adcf-a5adf38b6904}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 7-8 Color, ! Name + 83.7674999999999, ! Rendering Red Value + 28.6875, ! Rendering Green Value + 200.8125; ! Rendering Blue Value + +OS:Rendering:Color, + {3b4a8573-972f-42ed-a36d-a53877b7383d}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 3 Color, ! Name + 28.6875, ! Rendering Red Value + 200.8125, ! Rendering Green Value + 180.1575; ! Rendering Blue Value + +OS:Rendering:Color, + {965c8993-83e0-46b1-be21-593be34abb11}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 4-6 Color, ! Name + 28.6875, ! Rendering Red Value + 200.8125, ! Rendering Green Value + 180.1575; ! Rendering Blue Value + +OS:Rendering:Color, + {238ccbec-0407-4579-a404-1cacef82238d}, ! Handle + ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 8 Color, ! Name + 28.6875, ! Rendering Red Value + 200.8125, ! Rendering Green Value + 180.1575; ! Rendering Blue Value + +OS:Rendering:Color, + {4dca5ed6-d704-4334-8ec6-653dbff131e7}, ! Handle + ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 1-7 Color, ! Name + 67.5749999999999, ! Rendering Red Value + 151.113, ! Rendering Green Value + 228.225; ! Rendering Blue Value + +OS:Rendering:Color, + {ad1987ec-f445-4571-95f5-f5914197a980}, ! Handle + ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 8 Color, ! Name + 128.622, ! Rendering Red Value + 67.5749999999999, ! Rendering Green Value + 228.225; ! Rendering Blue Value + +OS:Rendering:Color, + {629f5df4-c7b6-4ac0-afa1-7feb3878178c}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 1-2 Color, ! Name + 200.9145, ! Rendering Red Value + 228.225, ! Rendering Green Value + 67.5749999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {c77e95a2-1007-44af-a260-4836538b6f58}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 3a-3b Color, ! Name + 143.0805, ! Rendering Red Value + 228.225, ! Rendering Green Value + 67.5749999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {cc0c385b-1564-41c5-b1dc-0d539a582989}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 3c Color, ! Name + 143.0805, ! Rendering Red Value + 228.225, ! Rendering Green Value + 67.5749999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {c8900b40-3cca-4149-a194-187407b9b7ea}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 4-6 Color, ! Name + 114.1635, ! Rendering Red Value + 228.225, ! Rendering Green Value + 67.5749999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {6278f54e-a787-4fdb-8650-f9cc51404402}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 7 Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 69.1815; ! Rendering Blue Value + +OS:Rendering:Color, + {a1483ca7-7c5e-44fa-adbf-dd8e783f3844}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone 8 Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 78.8204999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {12b257fc-5699-4129-b055-36ad60b34592}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 3c Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 208.947; ! Rendering Blue Value + +OS:Rendering:Color, + {84060026-cb34-4558-9975-d20233f3a9c2}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 4-6 Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 208.947; ! Rendering Blue Value + +OS:Rendering:Color, + {4d8ec304-f18e-4355-ad0a-14962f861b52}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 7 Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 208.947; ! Rendering Blue Value + +OS:Rendering:Color, + {7656c713-6331-42bd-9446-d9e0d6291682}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 8 Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 208.947; ! Rendering Blue Value + +OS:Rendering:Color, + {44fa9f76-5af4-4d45-938c-6a1e36b02fd1}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resA 3a-3b Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 208.947; ! Rendering Blue Value + +OS:Rendering:Color, + {5b46c887-c1c9-4dd4-80fe-aed1721c82dd}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resH 3a-3b Color, ! Name + 67.5749999999999, ! Rendering Red Value + 228.225, ! Rendering Green Value + 208.947; ! Rendering Blue Value + +OS:Rendering:Color, + {613e7502-cbd5-4212-bc61-c965f18f8695}, ! Handle + ASHRAE 90.1-2004 ExtWindow ClimateZone alt-ware 1-8 Color, ! Name + 200.9145, ! Rendering Red Value + 228.225, ! Rendering Green Value + 67.5749999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {47593f39-8b27-4779-a2e0-41af3b87e7e7}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Auditorium Color, ! Name + 227.46, ! Rendering Red Value + 173.604, ! Rendering Green Value + 129.54; ! Rendering Blue Value + +OS:Rendering:Color, + {32ef8108-2fee-4217-8aa9-6341e3553b22}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria Color, ! Name + 62.832, ! Rendering Red Value + 167.28, ! Rendering Green Value + 36.72; ! Rendering Blue Value + +OS:Rendering:Color, + {18e4fad2-c8b1-4c5e-bfbd-bec47cc28987}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Classroom Color, ! Name + 227.46, ! Rendering Red Value + 173.604, ! Rendering Green Value + 129.54; ! Rendering Blue Value + +OS:Rendering:Color, + {89be26a2-5c25-45fd-9018-22b3cd242b9b}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Corridor Color, ! Name + 167.28, ! Rendering Red Value + 36.72, ! Rendering Green Value + 36.7199999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {962de8a5-dfda-42e8-ae10-767060ff0727}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym Color, ! Name + 172.6248, ! Rendering Red Value + 227.46, ! Rendering Green Value + 129.54; ! Rendering Blue Value + +OS:Rendering:Color, + {e2696f27-0af6-4b95-b074-e88f3a3a6490}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Kitchen Color, ! Name + 87.72, ! Rendering Red Value + 218.28, ! Rendering Green Value + 120.36; ! Rendering Blue Value + +OS:Rendering:Color, + {b2f3cef9-047b-4aa1-86d5-acb32c88bd3c}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Library Color, ! Name + 36.72, ! Rendering Red Value + 167.28, ! Rendering Green Value + 154.74624; ! Rendering Blue Value + +OS:Rendering:Color, + {896aaf8f-33eb-49c8-a205-6c4daa490698}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Lobby Color, ! Name + 218.28, ! Rendering Red Value + 119.0544, ! Rendering Green Value + 87.72; ! Rendering Blue Value + +OS:Rendering:Color, + {b9aa2f20-fc0d-472e-8151-df5ce9e1b8d3}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Mechanical Color, ! Name + 36.72, ! Rendering Red Value + 57.6095999999999, ! Rendering Green Value + 167.28; ! Rendering Blue Value + +OS:Rendering:Color, + {0530a8b6-7e23-4145-bd31-6b649fc9d11c}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office Color, ! Name + 129.54, ! Rendering Red Value + 227.46, ! Rendering Green Value + 198.084; ! Rendering Blue Value + +OS:Rendering:Color, + {6f73ea8b-1a31-4246-a9f3-4f6b0c630d81}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Restroom Color, ! Name + 167.28, ! Rendering Red Value + 154.224, ! Rendering Green Value + 36.72; ! Rendering Blue Value + +OS:Rendering:Color, + {5ba0efe6-6ab9-4236-9afd-7dc2e63a5a9d}, ! Handle + Air Wall Color, ! Name + 255.0, ! Rendering Red Value + 0.0, ! Rendering Green Value + 0.0; ! Rendering Blue Value + +OS:Rendering:Color, + {1ea15f5f-b5b2-42e8-a49b-1905ed90ecea}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 1 Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 120.1356; ! Rendering Blue Value + +OS:Rendering:Color, + {55e2f197-2d3b-4660-810f-1496f534fd7a}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 104.6214; ! Rendering Blue Value + +OS:Rendering:Color, + {3b16a88b-7dcc-431e-bb93-56c33cc3aa1f}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2b Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 104.6214; ! Rendering Blue Value + +OS:Rendering:Color, + {36917857-c616-4166-80b0-65f5b5765603}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 73.593; ! Rendering Blue Value + +OS:Rendering:Color, + {b129c33b-8802-4959-a326-1581617d12ea}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAS Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 73.593; ! Rendering Blue Value + +OS:Rendering:Color, + {fdfa413d-b28d-4613-9d45-4b319cc1db5b}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAX Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 73.593; ! Rendering Blue Value + +OS:Rendering:Color, + {ff259fd3-df02-485c-bd72-fe46a3b2226a}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3c Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 73.593; ! Rendering Blue Value + +OS:Rendering:Color, + {477ce77d-fbc0-45e4-8d67-3ac03f9b80df}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 50.3216999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {9bd499c5-ceeb-4797-83f6-c89184a19088}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4b Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 50.3216999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {ce6473cd-8ae9-4a12-8f02-f456e5b7f2a0}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4c Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 50.3216999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {5598edc1-476a-40c3-8e5c-00ca46d81d4c}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 34.8074999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {8220a842-da79-4147-8b40-fd5210792e47}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5b Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 34.8074999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {d004aa0b-c5c2-4c0c-87c4-e8620bad2b24}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 34.8074999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {bf0a6d10-89b8-460c-b114-39a580667f57}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6b Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 34.8074999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {ef2a6cde-cc50-4811-a45f-c8b965e59350}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 7 Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 34.8074999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {432721f8-b1c5-4701-a1ad-5bb95e544da3}, ! Handle + CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 8 Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 34.8074999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {cf554a3e-9e5e-4fc5-9c96-069315c2d422}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 1 Color, ! Name + 122.7213, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 164.0925; ! Rendering Blue Value + +OS:Rendering:Color, + {dc9d2133-44ed-4d8e-88e4-a721214d3b02}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 2a Color, ! Name + 138.2355, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 164.0925; ! Rendering Blue Value + +OS:Rendering:Color, + {42e77966-533f-495a-b709-e0315e14e134}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 2b Color, ! Name + 138.2355, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 164.0925; ! Rendering Blue Value + +OS:Rendering:Color, + {8630f26b-8dc1-4e95-a2df-98e5ba119c28}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 158.9211; ! Rendering Blue Value + +OS:Rendering:Color, + {8c1b81ea-3c84-49db-9ed8-6a1f322e20ad}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAS Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 158.9211; ! Rendering Blue Value + +OS:Rendering:Color, + {8178e09e-1125-4ff7-be1a-df85b0d04725}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAX Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 158.9211; ! Rendering Blue Value + +OS:Rendering:Color, + {921bce36-0107-45c0-b84c-3654c577e1c8}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 3c Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 158.9211; ! Rendering Blue Value + +OS:Rendering:Color, + {a5d20a29-7d22-4988-bb68-d1b6748c9142}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 4a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 135.6498; ! Rendering Blue Value + +OS:Rendering:Color, + {1bea94f5-f68d-4fe6-8ab2-3f77b4df5f7d}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 4b Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 135.6498; ! Rendering Blue Value + +OS:Rendering:Color, + {b6123c0e-9bf6-44ac-bbef-1dbb222e6477}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 4c Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 135.6498; ! Rendering Blue Value + +OS:Rendering:Color, + {1fedafc0-0210-4ab4-bc75-3afc67aa0800}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 5a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 120.1356; ! Rendering Blue Value + +OS:Rendering:Color, + {90d7a4ae-1f56-457d-95f2-442e404a6543}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 5b Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 120.1356; ! Rendering Blue Value + +OS:Rendering:Color, + {ccdf2358-ed8b-469f-a1c7-e5bc4e3a18d5}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 6a Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 104.6214; ! Rendering Blue Value + +OS:Rendering:Color, + {e723f255-567a-4ef1-9b27-c3b9ec494d1f}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 6b Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 104.6214; ! Rendering Blue Value + +OS:Rendering:Color, + {ea9c9548-7da8-426c-897d-37bf3e7385f7}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 7 Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 96.8643; ! Rendering Blue Value + +OS:Rendering:Color, + {de92eb61-ff45-44e4-a2f4-f93b764afe48}, ! Handle + CBECS 1980-2004 ExtRoof IEAD ClimateZone 8 Color, ! Name + 164.0925, ! Rendering Red Value + 34.8075, ! Rendering Green Value + 89.1072; ! Rendering Blue Value + +OS:Rendering:Color, + {492a4de4-e575-48ac-ade9-0cf4005adc5f}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 1 Color, ! Name + 172.9614, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {2327d734-1e67-4652-9cce-4100797c23a8}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 2a Color, ! Name + 189.669, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {6ef700fa-93c6-4511-8495-83e68d0f86f0}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 2b Color, ! Name + 189.669, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {f51635cd-cf60-43e9-ad78-127eb55a6663}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3a Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 211.9458; ! Rendering Blue Value + +OS:Rendering:Color, + {a91a7741-2c0a-4139-970c-e7db29d23e39}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAS Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 211.9458; ! Rendering Blue Value + +OS:Rendering:Color, + {623de263-c332-40bf-8821-350312e21d44}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAX Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 211.9458; ! Rendering Blue Value + +OS:Rendering:Color, + {2f15df8d-e087-423f-8f11-2a517ce5f91f}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 3c Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 211.9458; ! Rendering Blue Value + +OS:Rendering:Color, + {286a205e-4076-41aa-9f76-c437f5698221}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 4a Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 186.8844; ! Rendering Blue Value + +OS:Rendering:Color, + {d85db1e1-8776-4660-896c-3889854d5f63}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 4b Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 186.8844; ! Rendering Blue Value + +OS:Rendering:Color, + {3a1cd9d6-47bd-4e7d-88c8-f12fc568049f}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 4c Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 186.8844; ! Rendering Blue Value + +OS:Rendering:Color, + {a227e192-0dd6-43b6-914f-3bcb9ead8e1b}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 5a Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 170.1768; ! Rendering Blue Value + +OS:Rendering:Color, + {312924a5-6bc0-4977-9ba5-793ff348086a}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 5b Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 170.1768; ! Rendering Blue Value + +OS:Rendering:Color, + {c294e7a9-7319-4460-95a5-efc70265dca1}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 6a Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 153.4692; ! Rendering Blue Value + +OS:Rendering:Color, + {088dfb31-b9b3-4beb-a55e-3e229b9e2f47}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 6b Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 153.4692; ! Rendering Blue Value + +OS:Rendering:Color, + {25127e3f-fb36-492a-b0fe-bfea9a34affa}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 7 Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 145.1154; ! Rendering Blue Value + +OS:Rendering:Color, + {b185668d-675a-4e4d-8f3a-b319993e8168}, ! Handle + CBECS 1980-2004 ExtRoof Metal ClimateZone 8 Color, ! Name + 217.515, ! Rendering Red Value + 78.285, ! Rendering Green Value + 136.7616; ! Rendering Blue Value + +OS:Rendering:Color, + {a77f891d-c3b6-48db-a433-d02266201ea8}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 1 Color, ! Name + 16.9575, ! Rendering Red Value + 49.7097, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {8fd52a38-0313-4364-9fd6-83cd6842396f}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 2a Color, ! Name + 16.9575, ! Rendering Red Value + 42.1515, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {f823ba96-165f-4004-b24c-5f2aeca04592}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 2b Color, ! Name + 16.9575, ! Rendering Red Value + 42.1515, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {f45a0471-ad9c-45f4-a3ce-5ffdb58599a0}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3a Color, ! Name + 16.9575, ! Rendering Red Value + 27.0351, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {fdc38ffe-1b31-4547-87d0-b085a85adc9d}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAS Color, ! Name + 16.9575, ! Rendering Red Value + 27.0351, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {46963e37-2a4a-4835-a943-75676cdb00e8}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAX Color, ! Name + 16.9575, ! Rendering Red Value + 27.0351, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {97934706-5055-4e12-80ac-2feb65c370a9}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 3c Color, ! Name + 16.9575, ! Rendering Red Value + 27.0351, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {b1cb7df4-4ae2-4272-bf42-4ab46331fedd}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 4a Color, ! Name + 18.2171999999999, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {8c0507c6-8b4d-446d-a39e-c16e2275750f}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 4b Color, ! Name + 18.2171999999999, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {c1218ae6-7af3-406b-b274-6c54a2d4b239}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 4c-5a Color, ! Name + 18.2171999999999, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {99bec082-f288-4a60-97fd-2e830b9ed320}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 5b Color, ! Name + 25.7754, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {afa94f17-bb4d-408f-b89e-731e4dece400}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 6a Color, ! Name + 33.3336, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {067e7bc5-142d-4b8a-8dd8-c007c2801848}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 6b Color, ! Name + 33.3336, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {e5e2c780-290a-465f-abf7-2a13e3b97d04}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 7 Color, ! Name + 37.1127, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {38a8dc45-91cf-4c01-9a24-c255ccf39886}, ! Handle + CBECS 1980-2004 ExtWall Mass ClimateZone 8 Color, ! Name + 40.8918, ! Rendering Red Value + 16.9575, ! Rendering Green Value + 79.9425; ! Rendering Blue Value + +OS:Rendering:Color, + {88c0de18-4d66-468e-b76c-b0982b6322e1}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 1 Color, ! Name + 28.56, ! Rendering Red Value + 83.7216, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {ba4c4a2e-850a-4887-87ea-61eebfc86e5f}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 2a Color, ! Name + 28.56, ! Rendering Red Value + 70.992, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {a10e56d2-1d33-49b0-b95d-7e3bcc8f45f4}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 2b Color, ! Name + 28.56, ! Rendering Red Value + 70.992, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {8b3342dd-28db-4061-ada2-8cae10565ee1}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3a Color, ! Name + 28.56, ! Rendering Red Value + 45.5328, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {58051a46-57b3-48bb-b526-f921db856fed}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAS Color, ! Name + 28.56, ! Rendering Red Value + 45.5328, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {d88fcdd3-0f59-44d6-b2fa-00046d5a8d38}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAX Color, ! Name + 28.56, ! Rendering Red Value + 45.5328, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {e0ba6565-e50d-43a0-96b6-78c5cf23d5db}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 3c Color, ! Name + 28.56, ! Rendering Red Value + 45.5328, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {8b2f1991-e0d7-44d0-8dec-3570597f4e7c}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 4a Color, ! Name + 30.6815999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {fbd1ee56-14e5-4485-b677-c7d2d247989b}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 4b Color, ! Name + 30.6815999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {b5678963-69cc-41b8-8ee1-0290260b71d8}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 4c Color, ! Name + 30.6815999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {93a7b80d-a84f-475c-bd16-cd2d8d258211}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 5 Color, ! Name + 43.4111999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {62472710-0dde-454e-aca3-684fe5de042e}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 6a Color, ! Name + 56.1407999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {f5cbbd78-f617-452c-aa96-fb510b947923}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 6b Color, ! Name + 56.1407999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {ac666658-8748-4834-adee-570ae7ed5105}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 7 Color, ! Name + 62.5055999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {9e3dd5c1-aedd-4915-9fa3-55c120cc434d}, ! Handle + CBECS 1980-2004 ExtWall Metal ClimateZone 8 Color, ! Name + 68.8703999999999, ! Rendering Red Value + 28.56, ! Rendering Green Value + 134.64; ! Rendering Blue Value + +OS:Rendering:Color, + {8e9a9799-f57a-48a4-85aa-e9c309ab87ba}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 1 Color, ! Name + 40.1625, ! Rendering Red Value + 117.7335, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {63565275-942b-4ec9-88a3-980195ad26d2}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2a Color, ! Name + 40.1625, ! Rendering Red Value + 99.8325, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {50e0831a-201e-4970-889a-0d998a4d27be}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2b Color, ! Name + 40.1625, ! Rendering Red Value + 99.8325, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {041838ef-065b-4663-910d-a86a92242195}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3a Color, ! Name + 40.1625, ! Rendering Red Value + 64.0305000000001, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {60552f73-b51b-48f4-a124-f079b22ad5bc}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAS Color, ! Name + 40.1625, ! Rendering Red Value + 64.0305000000001, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {51793fc4-e175-4962-9516-b1752517722e}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAX Color, ! Name + 40.1625, ! Rendering Red Value + 64.0305000000001, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {19d94ea4-9fc8-435a-9338-dc78a5fe51a1}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3c Color, ! Name + 40.1625, ! Rendering Red Value + 64.0305000000001, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {a2959771-40ee-4c7a-8dcc-5e469376f24e}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4a Color, ! Name + 43.1459999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {663860ba-bb01-4a1a-a121-ac18a856fc03}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4b Color, ! Name + 43.1459999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {e3a90d46-a04d-45cd-8869-d2788354ed13}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4c Color, ! Name + 43.1459999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {5b4f2711-1f94-4967-8870-af44a15a6a47}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 5 Color, ! Name + 61.0469999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {3c24f67c-11ea-4f12-af43-bcf6634ca09d}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6a Color, ! Name + 78.9479999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {9c8c8844-769d-4530-a128-cb5c566c5eb5}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6b Color, ! Name + 78.9479999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {2b5a1981-e79b-474d-be36-9f565f91ff5c}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 7 Color, ! Name + 87.8984999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {fd610a61-d0f4-48e1-8a54-d512bb7ced2b}, ! Handle + CBECS 1980-2004 ExtWall SteelFrame ClimateZone 8 Color, ! Name + 96.8489999999999, ! Rendering Red Value + 40.1625, ! Rendering Green Value + 189.3375; ! Rendering Blue Value + +OS:Rendering:Color, + {ec1d367a-f313-4c3f-a02d-1787cabe194f}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 1 Color, ! Name + 78.285, ! Rendering Red Value + 150.6846, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {a8ded15b-90fc-4cfb-aaf8-94565ed3c1f3}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2a Color, ! Name + 78.285, ! Rendering Red Value + 133.977, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {4803aae2-cd91-42eb-8ca9-310d638251dd}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2b Color, ! Name + 78.285, ! Rendering Red Value + 133.977, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {8e1a65e9-23fe-43b2-86e3-9d5e21d76019}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3a Color, ! Name + 78.285, ! Rendering Red Value + 100.5618, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {faa05fc0-ccf3-4a57-b000-696448aaea88}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAS Color, ! Name + 78.285, ! Rendering Red Value + 100.5618, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {9ed7a618-9d28-4553-afd0-18888b8b0397}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAX Color, ! Name + 78.285, ! Rendering Red Value + 100.5618, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {8b61a631-439f-4ebe-9c66-43bd0c83786d}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3c Color, ! Name + 78.285, ! Rendering Red Value + 100.5618, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {304bbdc5-2bb3-4fe2-9b5f-3191a15fca14}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4a Color, ! Name + 81.0695999999999, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {19a6138d-c045-45e4-b052-0850f9eef2ff}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4b Color, ! Name + 81.0695999999999, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {3e84c380-0ec9-4edc-94e6-6f3d936d7ed9}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4c Color, ! Name + 81.0695999999999, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {e47c0c57-0813-49da-bce9-37f96f5070c5}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 5 Color, ! Name + 97.7771999999999, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {03a77cda-01a3-424a-bdf2-6d56b1f47371}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6a Color, ! Name + 114.4848, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {6164f3f5-0277-4615-bfa3-05e357161ad8}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6b Color, ! Name + 114.4848, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {8dca0820-e1bc-4978-998a-10884e1ea615}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 7 Color, ! Name + 122.8386, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {16b6ea15-2cef-4b52-b5af-91bb90428e20}, ! Handle + CBECS 1980-2004 ExtWall WoodFrame ClimateZone 8 Color, ! Name + 131.1924, ! Rendering Red Value + 78.285, ! Rendering Green Value + 217.515; ! Rendering Blue Value + +OS:Rendering:Color, + {2ef32c95-309e-4816-8344-b4e7e72f6ddf}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 1-2 Color, ! Name + 193.8459, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {150dd112-56e6-47fe-8cad-a893fcef9107}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3a Color, ! Name + 143.7231, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {6dbced9e-5424-4033-9661-1714c27171ee}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3b LAS Color, ! Name + 143.7231, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {8bf35726-d751-47f8-b634-e25a7ef1d19b}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3b LAX Color, ! Name + 143.7231, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {cc58d3aa-0efb-40cd-84bb-63431a1a7648}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 3c Color, ! Name + 143.7231, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {a1fd572d-ecc8-49f2-97d1-216ee9242091}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 4a Color, ! Name + 118.6617, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {acc8d852-042b-4336-9e90-7ddeb40023ab}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 4b Color, ! Name + 118.6617, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {51e1b71e-4630-44b8-a903-9102b249bc0c}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 4c Color, ! Name + 118.6617, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {f02e4868-6845-4619-9ba3-d5da736a7a73}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 5 Color, ! Name + 101.9541, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {9f646273-1ce4-4cb6-b9f7-bfe2972b569d}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 6 Color, ! Name + 85.2465, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {158646e6-47ef-4969-b255-03d44106b666}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 7 Color, ! Name + 78.285, ! Rendering Red Value + 217.515, ! Rendering Green Value + 79.6773; ! Rendering Blue Value + +OS:Rendering:Color, + {95429580-e4e8-45ed-ba08-c3dbb35a0fa1}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone 8 Color, ! Name + 78.285, ! Rendering Red Value + 217.515, ! Rendering Green Value + 88.0311; ! Rendering Blue Value + +OS:Rendering:Color, + {faf763cc-89f2-42a7-89af-050976efebb3}, ! Handle + CBECS 1980-2004 ExtWindow ClimateZone alt-lrgoff hosp 1-8 Color, ! Name + 193.8459, ! Rendering Red Value + 217.515, ! Rendering Green Value + 78.285; ! Rendering Blue Value + +OS:Rendering:Color, + {e51684a2-606e-45db-b030-9e1f9c8b5c36}, ! Handle + CBECS 1980-2004 SecondarySchool Auditorium Color, ! Name + 218.28, ! Rendering Red Value + 174.522, ! Rendering Green Value + 138.72; ! Rendering Blue Value + +OS:Rendering:Color, + {e94cf327-6a11-469d-b495-9a54004ec4d2}, ! Handle + CBECS 1980-2004 SecondarySchool Cafeteria Color, ! Name + 70.176, ! Rendering Red Value + 155.04, ! Rendering Green Value + 48.96; ! Rendering Blue Value + +OS:Rendering:Color, + {818c60b5-9ca7-4cf8-b841-e71a3722758e}, ! Handle + CBECS 1980-2004 SecondarySchool Classroom Color, ! Name + 218.28, ! Rendering Red Value + 174.522, ! Rendering Green Value + 138.72; ! Rendering Blue Value + +OS:Rendering:Color, + {994f04b2-fec6-4ac6-9414-03ceda443f3b}, ! Handle + CBECS 1980-2004 SecondarySchool Corridor Color, ! Name + 155.04, ! Rendering Red Value + 48.96, ! Rendering Green Value + 48.9599999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {168f3736-95ea-492f-adb1-2bba299f0ad1}, ! Handle + CBECS 1980-2004 SecondarySchool Gym Color, ! Name + 173.7264, ! Rendering Red Value + 218.28, ! Rendering Green Value + 138.72; ! Rendering Blue Value + +OS:Rendering:Color, + {aeb15a70-e88c-4dfa-a41a-f7ce43c4d6a1}, ! Handle + CBECS 1980-2004 SecondarySchool Kitchen Color, ! Name + 99.96, ! Rendering Red Value + 206.04, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {d9e440e4-79a8-42d4-a5bf-5c6647f2f547}, ! Handle + CBECS 1980-2004 SecondarySchool Library Color, ! Name + 48.96, ! Rendering Red Value + 155.04, ! Rendering Green Value + 144.85632; ! Rendering Blue Value + +OS:Rendering:Color, + {8f9b3743-3d9a-4f30-af01-f4f41c1a95db}, ! Handle + CBECS 1980-2004 SecondarySchool Lobby Color, ! Name + 206.04, ! Rendering Red Value + 125.4192, ! Rendering Green Value + 99.96; ! Rendering Blue Value + +OS:Rendering:Color, + {397e12a1-202a-4679-ad63-67b17d2eb8d5}, ! Handle + CBECS 1980-2004 SecondarySchool Mechanical Color, ! Name + 48.96, ! Rendering Red Value + 65.9328, ! Rendering Green Value + 155.04; ! Rendering Blue Value + +OS:Rendering:Color, + {c10ba5b2-fe4f-4f48-a896-526d6019deb0}, ! Handle + CBECS 1980-2004 SecondarySchool Office Color, ! Name + 138.72, ! Rendering Red Value + 218.28, ! Rendering Green Value + 194.412; ! Rendering Blue Value + +OS:Rendering:Color, + {1aed42d9-b0b2-4051-b78e-2920c646eeda}, ! Handle + CBECS 1980-2004 SecondarySchool Restroom Color, ! Name + 155.04, ! Rendering Red Value + 144.432, ! Rendering Green Value + 48.96; ! Rendering Blue Value + +OS:Rendering:Color, + {acd816cb-8fd7-483d-beb8-9c0162b90509}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 1-3 Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 116.9532; ! Rendering Blue Value + +OS:Rendering:Color, + {923055e5-5cc0-45ff-b398-f1d087c3316a}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4a Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 57.8798999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {adef2ba0-7ea6-408a-a393-11dd9183e599}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4b Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 57.8798999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {4422f757-0b74-4c2f-b083-0582814bfd02}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4c Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 57.8798999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {7a8de390-c796-401c-bb0f-5c6531888e5f}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5a Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 44.7524999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {e5cbb53b-4ae1-4f81-8d4f-1f77c599a406}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5b Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 44.7524999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {497f403b-e575-4d24-9432-7078b4b19c22}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 6 Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 44.7524999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {4896d242-e6af-465d-88be-c1539325d2fd}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 7 Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 44.7524999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {7d97d0dc-29b9-4be5-ba0e-b5fea16ae416}, ! Handle + CBECS Before-1980 ExtRoof AtticFloor ClimateZone 8 Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 44.7524999999999; ! Rendering Blue Value + +OS:Rendering:Color, + {44733fca-03ab-4774-9588-eb7366554d0f}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 1-3 Color, ! Name + 119.1411, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 154.1475; ! Rendering Blue Value + +OS:Rendering:Color, + {8e6540ea-dd12-4d1e-afc4-543e5a741004}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 4a Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 130.0806; ! Rendering Blue Value + +OS:Rendering:Color, + {f52cfe05-223e-482b-8a03-28e9a086485e}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 4b Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 130.0806; ! Rendering Blue Value + +OS:Rendering:Color, + {ea53efab-4239-4bd9-9bde-a9122aa104ba}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 4c Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 130.0806; ! Rendering Blue Value + +OS:Rendering:Color, + {adbc43e2-1255-423d-b85e-0ed4d1d7893d}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 5a Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 116.9532; ! Rendering Blue Value + +OS:Rendering:Color, + {d21f9553-53d1-4ec0-b085-53a9452c291e}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 5b Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 116.9532; ! Rendering Blue Value + +OS:Rendering:Color, + {205baf08-8d9f-4a61-a98a-a8a2b8b978bc}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 6 Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 103.8258; ! Rendering Blue Value + +OS:Rendering:Color, + {dcd46811-074b-44a3-bfef-4ea1e64d2c7c}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 7 Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 97.2621, ! Rendering Blue Value + ; ! Rendering Alpha Value + +OS:Rendering:Color, + {adf70ac3-816a-4aed-aad2-c04c4c9ab083}, ! Handle + CBECS Before-1980 ExtRoof IEAD ClimateZone 8 Color, ! Name + 154.1475, ! Rendering Red Value + 44.7525, ! Rendering Green Value + 90.6984; ! Rendering Blue Value + +OS:Rendering:Color, + {77b88734-e69e-46cc-9ee1-b175cda6e336}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 1-2 Color, ! Name + 21.8025, ! Rendering Red Value + 49.5159, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {f28e6547-4a70-4e4b-ba56-a7fa5b5a8407}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 3a Color, ! Name + 21.8025, ! Rendering Red Value + 30.3297, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {e2e4165f-df62-4bb4-96ff-b7b46530eda1}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 3b Color, ! Name + 21.8025, ! Rendering Red Value + 30.3297, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {93c014a1-e313-4432-827d-ca814f3d5494}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 3c Color, ! Name + 21.8025, ! Rendering Red Value + 30.3297, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {0b877208-9b7b-4262-b75c-d547a149e555}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 4a Color, ! Name + 22.8683999999999, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {1b520467-7699-4e24-a682-88847cd5f95a}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 4b Color, ! Name + 22.8683999999999, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {29e5d2df-d9d2-4e37-8a4c-6f49dbcf7796}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 4c Color, ! Name + 22.8683999999999, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {63fd6dbc-e3b3-4d3b-9057-3806faa3e261}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 5a Color, ! Name + 29.2638, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {7065de87-b88f-4703-8d36-eb633741532a}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 5b Color, ! Name + 29.2638, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {ccf9a487-1499-427c-9c58-c03ea13520f5}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 6 Color, ! Name + 35.6592, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {dfd364e1-e3ad-4419-8436-46b4dbc30a80}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 7 Color, ! Name + 38.8569, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {6cc160fc-eda5-454a-9fc8-248d3602877c}, ! Handle + CBECS Before-1980 ExtWall Mass ClimateZone 8 Color, ! Name + 42.0546, ! Rendering Red Value + 21.8025, ! Rendering Green Value + 75.0975; ! Rendering Blue Value + +OS:Rendering:Color, + {cdf43e8c-2707-4023-a505-a103b5c1122e}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 1-2 Color, ! Name + 36.72, ! Rendering Red Value + 83.3952, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {abf65fac-a143-4906-8870-b68e2b29853c}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 3a Color, ! Name + 36.72, ! Rendering Red Value + 51.0816, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {59430b4e-363e-4bae-96d8-a738d6abddda}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 3b Color, ! Name + 36.72, ! Rendering Red Value + 51.0816, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {0cbff5e1-c8b0-4b2a-992b-628dec59481d}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 3c Color, ! Name + 36.72, ! Rendering Red Value + 51.0816, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {844fd75e-e0b0-46ae-8ced-5335fc28af5d}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 4a Color, ! Name + 38.5151999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {d7634987-5fd8-4a42-9823-18432cbb72dc}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 4b Color, ! Name + 38.5151999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {01a70f65-484e-4f80-b73d-f9b756234486}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 4c Color, ! Name + 38.5151999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {82bf2d2f-f378-41a4-b223-2130a1114b27}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 5a Color, ! Name + 49.2863999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {1b992bb3-58f2-49ec-8b9d-d2d510a12242}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 5b Color, ! Name + 49.2863999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {93b3a8b8-1ed4-4327-b943-bf3b52676060}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 6 Color, ! Name + 60.0575999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {c97c10eb-f21e-4e62-9967-72b4ef407d86}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 7 Color, ! Name + 65.4431999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {fdcfe45e-c6ba-43b1-8a9f-690c6f3e3825}, ! Handle + CBECS Before-1980 ExtWall Metal ClimateZone 8 Color, ! Name + 70.8287999999999, ! Rendering Red Value + 36.72, ! Rendering Green Value + 126.48; ! Rendering Blue Value + +OS:Rendering:Color, + {94bf8dd4-d14d-4dce-ac68-d72e4411e103}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 1-3b Color, ! Name + 51.6375, ! Rendering Red Value + 117.2745, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {55c209df-3b26-42d7-a30e-7421b4a7f912}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 3c Color, ! Name + 51.6375, ! Rendering Red Value + 71.8335, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {05353120-3742-43bb-b04c-a08dbcf670b8}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 4a Color, ! Name + 54.1619999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {cdc7c4ba-a5c5-4fd3-b783-cf84a130443d}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 4b Color, ! Name + 54.1619999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {5482f903-095c-420e-bdc1-5cf22a47d7f7}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 4c Color, ! Name + 54.1619999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {b04bf47c-c5de-4f59-a18a-f063cfe28957}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 5a Color, ! Name + 69.3089999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {849f1f45-ac9e-44aa-a8d1-c03e31cad58f}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 5b Color, ! Name + 69.3089999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {c83c7eab-0fe4-458d-8da2-85ed2e5446ed}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 6 Color, ! Name + 84.4559999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {c2dc01f1-5dc4-4910-8760-8a418f502eda}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 7 Color, ! Name + 92.0294999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {3833555c-94b3-4e59-8bc9-788dfe2ce1dd}, ! Handle + CBECS Before-1980 ExtWall SteelFrame ClimateZone 8 Color, ! Name + 99.6029999999999, ! Rendering Red Value + 51.6375, ! Rendering Green Value + 177.8625; ! Rendering Blue Value + +OS:Rendering:Color, + {183b6938-31e1-4693-8537-fc2fefff34d1}, ! Handle + CBECS Before-1980 ExtWindow ClimateZone 1-4 Color, ! Name + 186.7773, ! Rendering Red Value + 206.805, ! Rendering Green Value + 88.995; ! Rendering Blue Value + +OS:Rendering:Color, + {adfb8b7e-3ab3-48a4-a516-1f25ea768cdf}, ! Handle + CBECS Before-1980 ExtWindow ClimateZone 5-8 Color, ! Name + 109.0227, ! Rendering Red Value + 206.805, ! Rendering Green Value + 88.995; ! Rendering Blue Value + +OS:Rendering:Color, + {50875956-913e-4b66-bfa9-feb83313be9a}, ! Handle + CBECS Before-1980 ExtWindow ClimateZone alt-lrgoff hosp 1-8 Color, ! Name + 186.7773, ! Rendering Red Value + 206.805, ! Rendering Green Value + 88.995; ! Rendering Blue Value + +OS:Rendering:Color, + {8e17152b-17c2-41bb-8c70-380c948b70e2}, ! Handle + CBECS Before-1980 SecondarySchool Auditorium Color, ! Name + 209.1, ! Rendering Red Value + 175.44, ! Rendering Green Value + 147.9; ! Rendering Blue Value + +OS:Rendering:Color, + {adb2126b-c36a-4f44-b31f-13504fac1ea9}, ! Handle + CBECS Before-1980 SecondarySchool Cafeteria Color, ! Name + 77.52, ! Rendering Red Value + 142.8, ! Rendering Green Value + 61.2; ! Rendering Blue Value + +OS:Rendering:Color, + {5edc0f4c-2bf8-41ec-b75b-0ff3384b5b9e}, ! Handle + CBECS Before-1980 SecondarySchool Classroom Color, ! Name + 209.1, ! Rendering Red Value + 175.44, ! Rendering Green Value + 147.9; ! Rendering Blue Value + +OS:Rendering:Color, + {7fb498bc-7983-4d66-92c9-32ca045d1581}, ! Handle + CBECS Before-1980 SecondarySchool Corridor Color, ! Name + 142.8, ! Rendering Red Value + 61.2, ! Rendering Green Value + 61.2; ! Rendering Blue Value + +OS:Rendering:Color, + {fdb364ee-19f1-46c6-8795-1c66aeadf1ee}, ! Handle + CBECS Before-1980 SecondarySchool Gym Color, ! Name + 174.828, ! Rendering Red Value + 209.1, ! Rendering Green Value + 147.9; ! Rendering Blue Value + +OS:Rendering:Color, + {b001ae2c-0fc2-440e-8f24-d96b6e922b40}, ! Handle + CBECS Before-1980 SecondarySchool Kitchen Color, ! Name + 112.2, ! Rendering Red Value + 193.8, ! Rendering Green Value + 132.6; ! Rendering Blue Value + +OS:Rendering:Color, + {71433e31-c37c-4cb9-a279-6350f58aaac7}, ! Handle + CBECS Before-1980 SecondarySchool Library Color, ! Name + 61.2, ! Rendering Red Value + 142.8, ! Rendering Green Value + 134.9664; ! Rendering Blue Value + +OS:Rendering:Color, + {0271a677-4703-4d7b-86bc-784a97513a67}, ! Handle + CBECS Before-1980 SecondarySchool Lobby Color, ! Name + 193.8, ! Rendering Red Value + 131.784, ! Rendering Green Value + 112.2; ! Rendering Blue Value + +OS:Rendering:Color, + {756182f2-2730-49da-bd67-20ab662fe42d}, ! Handle + CBECS Before-1980 SecondarySchool Mechanical Color, ! Name + 61.2, ! Rendering Red Value + 74.256, ! Rendering Green Value + 142.8; ! Rendering Blue Value + +OS:Rendering:Color, + {6507c5bc-ea00-43f2-a447-d35047ab8fcf}, ! Handle + CBECS Before-1980 SecondarySchool Office Color, ! Name + 147.9, ! Rendering Red Value + 209.1, ! Rendering Green Value + 190.74; ! Rendering Blue Value + +OS:Rendering:Color, + {0d0e1f9b-f872-448e-8b86-aee00bf944c1}, ! Handle + CBECS Before-1980 SecondarySchool Restroom Color, ! Name + 142.8, ! Rendering Red Value + 134.64, ! Rendering Green Value + 61.2; ! Rendering Blue Value + +OS:Rendering:Color, + {d89efa51-07a1-4df8-8e39-5576e9589ffd}, ! Handle + Empty Space Type Color, ! Name + 128.0, ! Rendering Red Value + 128.0, ! Rendering Green Value + 128.0; ! Rendering Blue Value + +OS:Rendering:Color, + {b6e05acf-ec25-430e-abc3-192daddd0a6e}, ! Handle + Attic Color, ! Name + 255.0, ! Rendering Red Value + 51.0, ! Rendering Green Value + 173.4; ! Rendering Blue Value + +OS:RunPeriodControl:DaylightSavingTime, + {e7ff9fa0-5542-4564-ba33-dac72b1a3fd1}, ! Handle + 2nd Sunday in March, ! Start Date + 1st Sunday in November; ! End Date + +OS:RunPeriodControl:SpecialDays, + {816b362c-226b-406c-ac07-42f9fd8d3f17}, ! Handle + Christmas, ! Name + December 25, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {f531b8dd-870c-41dc-9d71-0ab9cdb056b7}, ! Handle + Columbus Day, ! Name + 2nd Monday in October, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {84a0ade2-ad56-459a-a847-acbe5e9196ef}, ! Handle + Independence Day, ! Name + July 4, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {a16b6cf0-018d-4638-ae85-a14d3ea0d9c0}, ! Handle + Labor Day, ! Name + 1st Monday in September, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {f10edb3f-d182-4dc7-be19-9e1e282b6133}, ! Handle + MLK Day, ! Name + 3rd Monday in January, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {9ba5db89-0c0e-477a-b64e-6881055eae43}, ! Handle + Memorial Day, ! Name + Last Monday in May, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {f14bf86a-6ea4-414d-80da-2dc72effb89f}, ! Handle + New Years Day, ! Name + January 1, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {438fd386-f33c-4f62-9695-e81108a20c10}, ! Handle + Presidents Day, ! Name + 3rd Monday in February, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {a2aada34-2709-47cc-8db5-cdf339c25c5e}, ! Handle + Thanksgiving, ! Name + 4th Thursday in November, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:RunPeriodControl:SpecialDays, + {a5572664-929e-4829-8dc4-b5aba5849e1b}, ! Handle + Veterans Day, ! Name + November 11, ! Start Date + 1, ! Duration + Holiday; ! Special Day Type + +OS:ScheduleTypeLimits, + {e814256c-c475-4870-9ed4-5feb769f3e3c}, ! Handle + Any Number; ! Name + +OS:ScheduleTypeLimits, + {2f99a0c4-c920-4392-ad4c-13f209cfc008}, ! Handle + Control Type, ! Name + 0, ! Lower Limit Value + 4, ! Upper Limit Value + DISCRETE; ! Numeric Type + +OS:ScheduleTypeLimits, + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Handle + Fraction, ! Name + 0, ! Lower Limit Value + 1, ! Upper Limit Value + CONTINUOUS; ! Numeric Type + +OS:ScheduleTypeLimits, + {002b458c-ec3f-4781-9901-cdaee085cee6}, ! Handle + On/Off, ! Name + 0, ! Lower Limit Value + 1, ! Upper Limit Value + DISCRETE; ! Numeric Type + +OS:SimulationControl, + {3cacd8b8-8500-4f87-85ed-71e7dad34073}, ! Handle + No, ! Do Zone Sizing Calculation + No, ! Do System Sizing Calculation + No, ! Do Plant Sizing Calculation + No, ! Run Simulation for Sizing Periods + Yes, ! Run Simulation for Weather File Run Periods + 0.040000000000000001, ! Loads Convergence Tolerance Value + 0.40000000000000002, ! Temperature Convergence Tolerance Value + FullExterior, ! Solar Distribution + 25; ! Maximum Number of Warmup Days + +OS:SpaceInfiltration:DesignFlowRate, + {2e8896af-9b57-41e9-bc6a-9cb98b1d98ce}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom Infil, ! Name + {f6c9890d-4fb2-4173-884a-8c6c03ed1670}, ! Space or SpaceType Name + , ! Schedule Name + AirChanges/Hour, ! Design Flow Rate Calculation Method + 0, ! Design Flow Rate + , ! Flow per Space Floor Area + , ! Flow per Exterior Surface Area + 0.135, ! Air Changes per Hour + , ! Constant Term Coefficient + , ! Temperature Term Coefficient + , ! Velocity Term Coefficient + ; ! Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {4544f042-9052-4fe2-86b9-d2556f96af38}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria Infil, ! Name + {e04862be-4937-4a7f-a795-7731f14e8f20}, ! Space or SpaceType Name + , ! Schedule Name + AirChanges/Hour, ! Design Flow Rate Calculation Method + 0, ! Design Flow Rate + , ! Flow per Space Floor Area + , ! Flow per Exterior Surface Area + 0.18, ! Air Changes per Hour + , ! Constant Term Coefficient + , ! Temperature Term Coefficient + , ! Velocity Term Coefficient + ; ! Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {bd053531-f8f5-45be-b605-d4e36b4e400a}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym Infil, ! Name + {bb037295-1692-4a23-a0e4-ab2cba7fa69c}, ! Space or SpaceType Name + , ! Schedule Name + AirChanges/Hour, ! Design Flow Rate Calculation Method + 0, ! Design Flow Rate + , ! Flow per Space Floor Area + , ! Flow per Exterior Surface Area + 0.18, ! Air Changes per Hour + , ! Constant Term Coefficient + , ! Temperature Term Coefficient + , ! Velocity Term Coefficient + ; ! Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {5efe0b86-eb6a-4408-9162-37bbddc2af9f}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office Infil, ! Name + {09d69842-de39-414d-b3e6-ca9da2c8a145}, ! Space or SpaceType Name + , ! Schedule Name + AirChanges/Hour, ! Design Flow Rate Calculation Method + 0, ! Design Flow Rate + , ! Flow per Space Floor Area + , ! Flow per Exterior Surface Area + 0.18, ! Air Changes per Hour + , ! Constant Term Coefficient + , ! Temperature Term Coefficient + , ! Velocity Term Coefficient + ; ! Velocity Squared Term Coefficient + +OS:SpaceType, + {f6c9890d-4fb2-4173-884a-8c6c03ed1670}, ! Handle + ASHRAE 189.1-2009 ClimateZone 4-8 SecondarySchool Classroom, ! Name + , ! Default Construction Set Name + {8245cd5b-e772-4cbb-a1d4-90f7c2577033}, ! Default Schedule Set Name + {97a30e94-d4ec-4745-82d5-e727e925153f}, ! Group Rendering Name + {8f41be0a-67fe-45a0-bdde-3f0463e95a17}, ! Design Specification Outdoor Air Object Name + SecondarySchool, !- Standards Building Type + OpenOffice; !- Standards Space Type + +OS:SpaceType, + {e04862be-4937-4a7f-a795-7731f14e8f20}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Cafeteria, ! Name + , ! Default Construction Set Name + {81ebe8af-f422-4d64-bc21-6ff750749ada}, ! Default Schedule Set Name + {32ef8108-2fee-4217-8aa9-6341e3553b22}, ! Group Rendering Name + {d0a4fc11-114a-44d7-8155-c5dc8354d466}, ! Design Specification Outdoor Air Object Name + SecondarySchool, !- Standards Building Type + Cafeteria; !- Standards Space Type + +OS:SpaceType, + {bb037295-1692-4a23-a0e4-ab2cba7fa69c}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Gym, ! Name + , ! Default Construction Set Name + {daf5fed8-5b65-440a-8c6e-c9630fbaf451}, ! Default Schedule Set Name + {962de8a5-dfda-42e8-ae10-767060ff0727}, ! Group Rendering Name + {789a59ab-8ea9-4790-b390-a62643f2669b}, ! Design Specification Outdoor Air Object Name + SecondarySchool, !- Standards Building Type + Gym; !- Standards Space Type + +OS:SpaceType, + {09d69842-de39-414d-b3e6-ca9da2c8a145}, ! Handle + ASHRAE 90.1-2004 SecondarySchool Office, ! Name + , ! Default Construction Set Name + {d07cd639-c4db-4910-a050-7256b9b7adea}, ! Default Schedule Set Name + {0530a8b6-7e23-4145-bd31-6b649fc9d11c}, ! Group Rendering Name + {b252ac88-1494-4791-bd30-cbbb600228c3}, ! Design Specification Outdoor Air Object Name + SecondarySchool, !- Standards Building Type + EnclosedOffice; !- Standards Space Type + +OS:ThermostatSetpoint:DualSetpoint, + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, ! Handle + SecondarySchool Thermostat, ! Name + {3181e006-ef48-47af-bd5d-8ab7033c0747}, ! Heating Setpoint Temperature Schedule Name + {500d03c4-b95d-4d8a-8475-8a5896387292}; ! Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {95827708-c99e-49dc-9b84-affc3a1448bf}, ! Handle + SecondarySchool Thermostat BathCorrMechKitchen, ! Name + {c7e91b09-2d50-4b42-ae55-58e351cc8597}, ! Heating Setpoint Temperature Schedule Name + {70c5f723-1f88-4985-a35b-59c0aa2f4246}; ! Cooling Setpoint Temperature Schedule Name + +OS:Timestep, + {7e269fd2-4f9c-452a-bdda-9dc5b4a3a746}, ! Handle + 4; ! Number of Timesteps per Hour + +OS:WindowMaterial:Gas, + {aa07cd9d-3f86-4662-af87-f8a7f0077477}, ! Handle + 000 Air 13mm, ! Name + Air, ! Gas Type + 0.012699999999999999; ! Thickness + +OS:WindowMaterial:Glazing, + {165e9f00-cc09-48c1-a4c2-8d6534c9a8c5}, ! Handle + 000 Clear 3mm, ! Name + SpectralAverage, ! Optical Data Type + , ! Window Glass Spectral Data Set Name + 0.0030000000000000001, ! Thickness + 0.83699999999999997, ! Solar Transmittance at Normal Incidence + 0.074999999999999997, ! Front Side Solar Reflectance at Normal Incidence + 0.074999999999999997, ! Back Side Solar Reflectance at Normal Incidence + 0.89800000000000002, ! Visible Transmittance at Normal Incidence + 0.081000000000000003, ! Front Side Visible Reflectance at Normal Incidence + 0.081000000000000003, ! Back Side Visible Reflectance at Normal Incidence + 0, ! Infrared Transmittance at Normal Incidence + 0.83999999999999997, ! Front Side Infrared Hemispherical Emissivity + 0.83999999999999997, ! Back Side Infrared Hemispherical Emissivity + 0.90000000000000002; ! Conductivity + +OS:WindowMaterial:Glazing, + {405af381-1ff5-45d2-9bca-871321956609}, ! Handle + Theoretical Glass [167], ! Name + SpectralAverage, ! Optical Data Type + , ! Window Glass Spectral Data Set Name + 0.0030000000000000001, ! Thickness + 0.2374, ! Solar Transmittance at Normal Incidence + 0.71260000000000001, ! Front Side Solar Reflectance at Normal Incidence + 0.71260000000000001, ! Back Side Solar Reflectance at Normal Incidence + 0.25119999999999998, ! Visible Transmittance at Normal Incidence + 0.69879999999999998, ! Front Side Visible Reflectance at Normal Incidence + 0.69879999999999998, ! Back Side Visible Reflectance at Normal Incidence + 0, ! Infrared Transmittance at Normal Incidence + 0.98499999999999999, ! Front Side Infrared Hemispherical Emissivity + 0.98499999999999999, ! Back Side Infrared Hemispherical Emissivity + 2.1073, ! Conductivity + 1, ! Dirt Correction Factor for Solar and Visible Transmittance + No; ! Solar Diffusing + +OS:WindowMaterial:Glazing, + {2cf9ce11-b74c-4b51-ab39-154dcc9d4771}, ! Handle + Theoretical Glass [197], ! Name + SpectralAverage, ! Optical Data Type + , ! Window Glass Spectral Data Set Name + 0.0030000000000000001, ! Thickness + 0.2349, ! Solar Transmittance at Normal Incidence + 0.71509999999999996, ! Front Side Solar Reflectance at Normal Incidence + 0.71509999999999996, ! Back Side Solar Reflectance at Normal Incidence + 0.25119999999999998, ! Visible Transmittance at Normal Incidence + 0.69879999999999998, ! Front Side Visible Reflectance at Normal Incidence + 0.69879999999999998, ! Back Side Visible Reflectance at Normal Incidence + 0, ! Infrared Transmittance at Normal Incidence + 0.90000000000000002, ! Front Side Infrared Hemispherical Emissivity + 0.90000000000000002, ! Back Side Infrared Hemispherical Emissivity + 0.041500000000000002, ! Conductivity + 1, ! Dirt Correction Factor for Solar and Visible Transmittance + No; ! Solar Diffusing + +OS:WindowMaterial:Glazing, + {00d2aeb6-20c5-4970-93a6-6d60353270c7}, ! Handle + Theoretical Glass [202], ! Name + SpectralAverage, ! Optical Data Type + , ! Window Glass Spectral Data Set Name + 0.0030000000000000001, ! Thickness + 0.23250000000000001, ! Solar Transmittance at Normal Incidence + 0.71750000000000003, ! Front Side Solar Reflectance at Normal Incidence + 0.71750000000000003, ! Back Side Solar Reflectance at Normal Incidence + 0.31919999999999998, ! Visible Transmittance at Normal Incidence + 0.63080000000000003, ! Front Side Visible Reflectance at Normal Incidence + 0.63080000000000003, ! Back Side Visible Reflectance at Normal Incidence + 0, ! Infrared Transmittance at Normal Incidence + 0.90000000000000002, ! Front Side Infrared Hemispherical Emissivity + 0.90000000000000002, ! Back Side Infrared Hemispherical Emissivity + 0.019199999999999998, ! Conductivity + 1, ! Dirt Correction Factor for Solar and Visible Transmittance + No; ! Solar Diffusing + +OS:WindowMaterial:Glazing, + {6e5b7a44-b8f1-463f-b75f-62bc6a4c0ede}, ! Handle + Theoretical Glass [207], ! Name + SpectralAverage, ! Optical Data Type + , ! Window Glass Spectral Data Set Name + 0.0030000000000000001, ! Thickness + 0.33110000000000001, ! Solar Transmittance at Normal Incidence + 0.61890000000000001, ! Front Side Solar Reflectance at Normal Incidence + 0.61890000000000001, ! Back Side Solar Reflectance at Normal Incidence + 0.44, ! Visible Transmittance at Normal Incidence + 0.51000000000000001, ! Front Side Visible Reflectance at Normal Incidence + 0.51000000000000001, ! Back Side Visible Reflectance at Normal Incidence + 0, ! Infrared Transmittance at Normal Incidence + 0.90000000000000002, ! Front Side Infrared Hemispherical Emissivity + 0.90000000000000002, ! Back Side Infrared Hemispherical Emissivity + 0.013299999999999999, ! Conductivity + 1, ! Dirt Correction Factor for Solar and Visible Transmittance + No; ! Solar Diffusing + +OS:WindowMaterial:Glazing, + {70760773-5fc1-4d08-8eef-ae2fbabb3d32}, ! Handle + Theoretical Glass [216], ! Name + SpectralAverage, ! Optical Data Type + , ! Window Glass Spectral Data Set Name + 0.0030000000000000001, ! Thickness + 0.38009999999999999, ! Solar Transmittance at Normal Incidence + 0.56989999999999996, ! Front Side Solar Reflectance at Normal Incidence + 0.56989999999999996, ! Back Side Solar Reflectance at Normal Incidence + 0.50790000000000002, ! Visible Transmittance at Normal Incidence + 0.44209999999999999, ! Front Side Visible Reflectance at Normal Incidence + 0.44209999999999999, ! Back Side Visible Reflectance at Normal Incidence + 0, ! Infrared Transmittance at Normal Incidence + 0.90000000000000002, ! Front Side Infrared Hemispherical Emissivity + 0.90000000000000002, ! Back Side Infrared Hemispherical Emissivity + 0.013299999999999999, ! Conductivity + 1, ! Dirt Correction Factor for Solar and Visible Transmittance + No; ! Solar Diffusing + +OS:WindowMaterial:Glazing, + {d3377fb1-b38b-4635-aa5f-f18ed80acf54}, ! Handle + Theoretical Glass [221], ! Name + SpectralAverage, ! Optical Data Type + , ! Window Glass Spectral Data Set Name + 0.0030000000000000001, ! Thickness + 0.42959999999999998, ! Solar Transmittance at Normal Incidence + 0.52039999999999997, ! Front Side Solar Reflectance at Normal Incidence + 0.52039999999999997, ! Back Side Solar Reflectance at Normal Incidence + 0.45029999999999998, ! Visible Transmittance at Normal Incidence + 0.49969999999999998, ! Front Side Visible Reflectance at Normal Incidence + 0.49969999999999998, ! Back Side Visible Reflectance at Normal Incidence + 0, ! Infrared Transmittance at Normal Incidence + 0.90000000000000002, ! Front Side Infrared Hemispherical Emissivity + 0.90000000000000002, ! Back Side Infrared Hemispherical Emissivity + 0.0088999999999999999, ! Conductivity + 1, ! Dirt Correction Factor for Solar and Visible Transmittance + No; ! Solar Diffusing + +OS:WindowMaterial:SimpleGlazingSystem, + {7223656d-4d0c-438a-95c5-483f090f2844}, ! Handle + Fixed Window 2.62/0.30/0.21, ! Name + 2.6118800000000002, ! U-Factor + 0.29999999999999999, ! Solar Heat Gain Coefficient + 0.20999999999999999; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {7b6a48a2-9018-430e-89fb-9c974d092c6d}, ! Handle + Fixed Window 2.67/0.30/0.21, ! Name + 2.66866, ! U-Factor + 0.48999999999999999, ! Solar Heat Gain Coefficient + 0.38; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {9ba65076-61e9-4056-b655-3979ff36305c}, ! Handle + Fixed Window 2.96/0.39/0.31, ! Name + 2.9525600000000001, ! U-Factor + 0.39000000000000001, ! Solar Heat Gain Coefficient + 0.31; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {871fe623-8418-4785-bf65-b6c3e9bdfc1d}, ! Handle + Fixed Window 2.96/0.49/0.41, ! Name + 2.9525600000000001, ! U-Factor + 0.48999999999999999, ! Solar Heat Gain Coefficient + 0.40999999999999998; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {d5165f0e-1b13-471a-a041-2662ffed0297}, ! Handle + Fixed Window 2.96/0.62/0.54, ! Name + 2.9525600000000001, ! U-Factor + 0.61499999999999999, ! Solar Heat Gain Coefficient + 0.54000000000000004; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {e3691bc1-c5a8-448a-927c-40b532235149}, ! Handle + Fixed Window 2.96/0.7/0.63, ! Name + 2.9525600000000001, ! U-Factor + 0.69999999999999996, ! Solar Heat Gain Coefficient + 0.63; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {e0fc2e96-467e-44c2-bbc6-e0e0d6f74bdc}, ! Handle + Fixed Window 3.24/0.25/0.16, ! Name + 3.2364600000000001, ! U-Factor + 0.25, ! Solar Heat Gain Coefficient + 0.16; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {704ddf45-6d9d-4d66-82bf-948789672bc7}, ! Handle + Fixed Window 3.24/0.39/0.31, ! Name + 3.2364600000000001, ! U-Factor + 0.39000000000000001, ! Solar Heat Gain Coefficient + 0.31; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {2369133b-4af8-4174-a00e-a29539b38735}, ! Handle + Fixed Window 3.24/0.49/0.41, ! Name + 3.2364600000000001, ! U-Factor + 0.48999999999999999, ! Solar Heat Gain Coefficient + 0.40999999999999998; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {b2b12a2f-6927-4174-a902-2b9f4335e392}, ! Handle + Fixed Window 3.35/0.36/0.27, ! Name + 3.3500200000000002, ! U-Factor + 0.35999999999999999, ! Solar Heat Gain Coefficient + 0.27000000000000002; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {3d29d6fa-2364-448b-9043-caf2dc3a1986}, ! Handle + Fixed Window 3.35/0.39/0.31, ! Name + 3.3500200000000002, ! U-Factor + 0.39000000000000001, ! Solar Heat Gain Coefficient + 0.31; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {6833b0b5-6a33-4f59-89c8-600daa3befcf}, ! Handle + Fixed Window 3.53/0.41/0.32, ! Name + 3.5203600000000002, ! U-Factor + 0.40999999999999998, ! Solar Heat Gain Coefficient + 0.32000000000000001; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {715e2722-3fbf-4b30-b154-0fde7f265699}, ! Handle + Fixed Window 3.81/0.3/.21, ! Name + 2.9525600000000001, ! U-Factor + 0.29999999999999999, ! Solar Heat Gain Coefficient + 0.20999999999999999; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {dc8a6b59-d6c6-422d-942a-229e57751214}, ! Handle + Fixed Window 3.81/0.39/0.27, ! Name + 2.9525600000000001, ! U-Factor + 0.39000000000000001, ! Solar Heat Gain Coefficient + 0.27000000000000002; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {e4e66954-ddba-476c-a5d2-9cbb2c32ebb5}, ! Handle + Fixed Window 3.81/0.49/0.38, ! Name + 2.9525600000000001, ! U-Factor + 0.48999999999999999, ! Solar Heat Gain Coefficient + 0.38; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {1c2a0b13-5f9c-4d24-a833-7f17cf3fa9b8}, ! Handle + Fixed Window 4.09/0.26/0.13, ! Name + 4.0881600000000002, ! U-Factor + 0.25, ! Solar Heat Gain Coefficient + 0.13; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {6cd6c08c-958d-474f-89d6-2e912faaed3b}, ! Handle + Fixed Window 4.09/0.36/0.23, ! Name + 4.0881600000000002, ! U-Factor + 0.35999999999999999, ! Solar Heat Gain Coefficient + 0.23000000000000001; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {2e7e90d4-05f5-4dc0-b6a7-d3ebb3a6e955}, ! Handle + Fixed Window 4.09/0.39/0.25, ! Name + 4.0881600000000002, ! U-Factor + 0.39000000000000001, ! Solar Heat Gain Coefficient + 0.25; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {792bbea6-984c-4239-a3a1-502aeb832ac7}, ! Handle + Fixed Window 5.84/0.25/0.11, ! Name + 6.9271599999999998, ! U-Factor + 0.25, ! Solar Heat Gain Coefficient + 0.11; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {54ad2b47-0435-473d-9508-37d1eb940eb5}, ! Handle + Fixed Window 5.84/0.39/0.22, ! Name + 6.9271599999999998, ! U-Factor + 0.39000000000000001, ! Solar Heat Gain Coefficient + 0.22; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {05610e04-f6ad-4d03-9915-9ef06204b77b}, ! Handle + Fixed Window 5.84/0.44/0.27, ! Name + 6.9271599999999998, ! U-Factor + 0.44, ! Solar Heat Gain Coefficient + 0.27000000000000002; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {b856edfa-5cae-4207-9bc9-a2cb8c254596}, ! Handle + Fixed Window 5.84/0.54/0.38, ! Name + 6.9271599999999998, ! U-Factor + 0.54000000000000004, ! Solar Heat Gain Coefficient + 0.38; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {ee541d06-6fcb-44a7-b092-f03bae0a8b53}, ! Handle + Fixed Window 5.84/0.61/0.47, ! Name + 6.9271599999999998, ! U-Factor + 0.60999999999999999, ! Solar Heat Gain Coefficient + 0.46999999999999997; ! Visible Transmittance + +OS:WindowMaterial:SimpleGlazingSystem, + {5bf309c9-492b-42b2-9717-17726104670a}, ! Handle + Fixed Window 5.84/0.70/0.60, ! Name + 6.9271599999999998, ! U-Factor + 0.69999999999999996, ! Solar Heat Gain Coefficient + 0.59999999999999998; ! Visible Transmittance + +OS:Schedule:Ruleset, + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Handle + SecondarySchool Bldg Occ, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {1a0d77be-cf56-46f6-b991-b62f33f583f1}, ! Default Day Schedule Name + {53b34f18-a4a5-4556-b80c-2efda278e9d8}, ! Summer Design Day Schedule Name + {6f410bfa-3955-4fb0-bf72-39eb1b6f869c}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {1a0d77be-cf56-46f6-b991-b62f33f583f1}, ! Handle + SecondarySchool Bldg Occ Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 16, !- Hour 2 + 0, !- Minute 2 + 0.7, !- Value Until Time 2 + 21, !- Hour 3 + 0, !- Minute 3 + 0.15, !- Value Until Time 3 + 24, !- Hour 4 + 0, !- Minute 4 + 0; !- Value Until Time 4 + +OS:Schedule:Rule, + {774a1a0c-a846-48a9-b487-1cae16d3bdea}, ! Handle + SecondarySchool Bldg Occ Rule 5, ! Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Schedule Ruleset Name + 4, ! Rule Order + {045e1fd3-245d-4ffd-936e-a392d15d2f1b}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {045e1fd3-245d-4ffd-936e-a392d15d2f1b}, ! Handle + SecondarySchool Bldg Occ Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {fd01867b-cedf-471f-97dd-f08518ccdcf8}, ! Handle + SecondarySchool Bldg Occ Rule 4, ! Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Schedule Ruleset Name + 3, ! Rule Order + {dc4e0a3b-ac97-4ecd-a804-910dfbb48b30}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {dc4e0a3b-ac97-4ecd-a804-910dfbb48b30}, ! Handle + SecondarySchool Bldg Occ Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0; ! Value Until Time 3 + +OS:Schedule:Rule, + {44e2b7bb-54de-4372-b246-6699a60ba0f1}, ! Handle + SecondarySchool Bldg Occ Rule 3, ! Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Schedule Ruleset Name + 2, ! Rule Order + {1074323a-cecf-4e1c-8402-4bb852f92050}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {1074323a-cecf-4e1c-8402-4bb852f92050}, ! Handle + SecondarySchool Bldg Occ Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {fd18ae3e-22e9-4698-a80b-e657ade7f060}, ! Handle + SecondarySchool Bldg Occ Rule 2, ! Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Schedule Ruleset Name + 1, ! Rule Order + {d5cc2e2f-cb4f-47ff-ba4b-918a87c395bc}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {d5cc2e2f-cb4f-47ff-ba4b-918a87c395bc}, ! Handle + SecondarySchool Bldg Occ Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 16, ! Hour 2 + 0, ! Minute 2 + 0.69999999999999996, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.14999999999999999, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Day, + {53b34f18-a4a5-4556-b80c-2efda278e9d8}, ! Handle + SecondarySchool Bldg Occ Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 16, ! Hour 2 + 0, ! Minute 2 + 0.69999999999999996, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.14999999999999999, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {99a1c4aa-bfc3-45a4-8520-4301314eaed5}, ! Handle + SecondarySchool Bldg Occ Rule 1, ! Name + {2a82d86b-71c5-40a3-aef7-4d987f872328}, ! Schedule Ruleset Name + 0, ! Rule Order + {3dad8895-9316-467f-b829-2b8de3b1df75}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {3dad8895-9316-467f-b829-2b8de3b1df75}, ! Handle + SecondarySchool Bldg Occ Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {6f410bfa-3955-4fb0-bf72-39eb1b6f869c}, ! Handle + SecondarySchool Bldg Occ Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {2cc4bdc3-30af-4422-870b-17d72c867dec}, ! Handle + SecondarySchool Extend Bldg Occ, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {abf1caed-dae1-4033-9821-18337ea64401}, ! Default Day Schedule Name + {70026362-f41a-4248-8166-d82b97ae1c34}, ! Summer Design Day Schedule Name + {e5005ae6-3a61-4757-ad76-128b8328e0c9}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {abf1caed-dae1-4033-9821-18337ea64401}, ! Handle + SecondarySchool Extend Bldg Occ Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 16, !- Hour 2 + 0, !- Minute 2 + 0.7, !- Value Until Time 2 + 21, !- Hour 3 + 0, !- Minute 3 + 0.7, !- Value Until Time 3 + 24, !- Hour 4 + 0, !- Minute 4 + 0; !- Value Until Time 4 + +OS:Schedule:Rule, + {682d16ae-b9d5-450f-a017-a072da2e7ba9}, ! Handle + SecondarySchool Extend Bldg Occ Rule 5, ! Name + {2cc4bdc3-30af-4422-870b-17d72c867dec}, ! Schedule Ruleset Name + 4, ! Rule Order + {d0a268fa-9a6c-4033-9445-0bb82383743b}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {d0a268fa-9a6c-4033-9445-0bb82383743b}, ! Handle + SecondarySchool Extend Bldg Occ Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {7a5ae132-c854-4b1d-9fc7-220321a1c1da}, ! Handle + SecondarySchool Extend Bldg Occ Rule 4, ! Name + {2cc4bdc3-30af-4422-870b-17d72c867dec}, ! Schedule Ruleset Name + 3, ! Rule Order + {eb0e7e42-4c5e-4e9d-88dc-9186a20dab9e}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {eb0e7e42-4c5e-4e9d-88dc-9186a20dab9e}, ! Handle + SecondarySchool Extend Bldg Occ Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.5, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {76a3ee4a-ff81-4292-a903-6e087bf603b6}, ! Handle + SecondarySchool Extend Bldg Occ Rule 3, ! Name + {2cc4bdc3-30af-4422-870b-17d72c867dec}, ! Schedule Ruleset Name + 2, ! Rule Order + {2f6b0c61-f718-47c4-ac51-81be733f3a10}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {2f6b0c61-f718-47c4-ac51-81be733f3a10}, ! Handle + SecondarySchool Extend Bldg Occ Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {d199e79e-0a52-4539-abba-c9f301f68d6b}, ! Handle + SecondarySchool Extend Bldg Occ Rule 2, ! Name + {2cc4bdc3-30af-4422-870b-17d72c867dec}, ! Schedule Ruleset Name + 1, ! Rule Order + {8f7a33fd-fbdb-4370-a41d-9516e39bd370}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {8f7a33fd-fbdb-4370-a41d-9516e39bd370}, ! Handle + SecondarySchool Extend Bldg Occ Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.69999999999999996, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.69999999999999996, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Day, + {70026362-f41a-4248-8166-d82b97ae1c34}, ! Handle + SecondarySchool Extend Bldg Occ Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.69999999999999996, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.69999999999999996, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {87d6319b-d379-4e5c-a7bf-efb7d4913a27}, ! Handle + SecondarySchool Extend Bldg Occ Rule 1, ! Name + {2cc4bdc3-30af-4422-870b-17d72c867dec}, ! Schedule Ruleset Name + 0, ! Rule Order + {e4233bfa-457c-4342-9daf-df74d44f67a2}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {e4233bfa-457c-4342-9daf-df74d44f67a2}, ! Handle + SecondarySchool Extend Bldg Occ Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {e5005ae6-3a61-4757-ad76-128b8328e0c9}, ! Handle + SecondarySchool Extend Bldg Occ Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {500d03c4-b95d-4d8a-8475-8a5896387292}, ! Handle + SecondarySchool ClgSetp, ! Name + {82c61da3-ef14-40d1-9843-cc13be933d4a}, ! Schedule Type Limits Name + {f1cfa39a-eb9f-4c87-a704-06995b0104b4}, ! Default Day Schedule Name + {463c52dc-2388-426d-b05c-19b7101409fa}, ! Summer Design Day Schedule Name + {f936cfa1-5058-4568-af6e-dd1111d474e8}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {f1cfa39a-eb9f-4c87-a704-06995b0104b4}, ! Handle + SecondarySchool ClgSetp Default Schedule, ! Name + {82c61da3-ef14-40d1-9843-cc13be933d4a}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 27, !- Value Until Time 1 + 21, !- Hour 2 + 0, !- Minute 2 + 24, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 27; !- Value Until Time 3 + +OS:Schedule:Rule, + {37e57dc8-0bbc-48e0-8c2f-e422a1452b9f}, ! Handle + SecondarySchool ClgSetp Rule 2, ! Name + {500d03c4-b95d-4d8a-8475-8a5896387292}, ! Schedule Ruleset Name + 1, ! Rule Order + {23da0ecd-7b0f-4232-9f72-986d9038d729}, ! Day Schedule Name + Yes, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {23da0ecd-7b0f-4232-9f72-986d9038d729}, ! Handle + SecondarySchool ClgSetp Rule 2 Day Schedule, ! Name + {82c61da3-ef14-40d1-9843-cc13be933d4a}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 27, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 27; ! Value Until Time 3 + +OS:Schedule:Day, + {463c52dc-2388-426d-b05c-19b7101409fa}, ! Handle + SecondarySchool ClgSetp Summer Design Day, ! Name + {82c61da3-ef14-40d1-9843-cc13be933d4a}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 24; ! Value Until Time 1 + +OS:Schedule:Day, + {f936cfa1-5058-4568-af6e-dd1111d474e8}, ! Handle + SecondarySchool ClgSetp Winter Design Day, ! Name + {82c61da3-ef14-40d1-9843-cc13be933d4a}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 27; ! Value Until Time 1 + +OS:Schedule:Rule, + {e0249c62-9017-47e5-84a7-9b00326af09c}, ! Handle + SecondarySchool ClgSetp Rule 1, ! Name + {500d03c4-b95d-4d8a-8475-8a5896387292}, ! Schedule Ruleset Name + 0, ! Rule Order + {19ca8d02-8d4c-48c0-a01e-b1affcce072a}, ! Day Schedule Name + Yes, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {19ca8d02-8d4c-48c0-a01e-b1affcce072a}, ! Handle + SecondarySchool ClgSetp Rule 1 Day Schedule, ! Name + {82c61da3-ef14-40d1-9843-cc13be933d4a}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 27, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 27; ! Value Until Time 3 + +OS:Schedule:Ruleset, + {aa4b1b53-2f75-43f9-9985-d7c52d8dca54}, ! Handle + SecondarySchool Work Eff, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {fb54cf93-6b97-4847-8921-86a421cd81b1}, ! Default Day Schedule Name + {677b3172-7587-43d3-9883-e075bb9614b3}, ! Summer Design Day Schedule Name + {2c48e0fe-b0e4-4842-a8cf-c30ac67a22e5}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {fb54cf93-6b97-4847-8921-86a421cd81b1}, ! Handle + SecondarySchool Work Eff Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {2c48e0fe-b0e4-4842-a8cf-c30ac67a22e5}, ! Handle + SecondarySchool Work Eff Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {677b3172-7587-43d3-9883-e075bb9614b3}, ! Handle + SecondarySchool Work Eff Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {70c5f723-1f88-4985-a35b-59c0aa2f4246}, ! Handle + SecondarySchool ClgSetp BathCorrMechKitchen, ! Name + {6356463a-d5c6-47ec-8686-b8e89dddfd62}, ! Schedule Type Limits Name + {f4859d7c-338f-49fd-83b1-51b620a80fc0}, ! Default Day Schedule Name + {9d4ac5bf-9af9-4491-b928-21ebfd9f26ae}, ! Summer Design Day Schedule Name + {684ccb98-0868-49df-9765-08b824809bdf}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {f4859d7c-338f-49fd-83b1-51b620a80fc0}, ! Handle + SecondarySchool ClgSetp BathCorrMechKitchen Default Schedule, ! Name + {6356463a-d5c6-47ec-8686-b8e89dddfd62}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 27; !- Value Until Time 1 + +OS:Schedule:Day, + {9d4ac5bf-9af9-4491-b928-21ebfd9f26ae}, ! Handle + SecondarySchool ClgSetp BathCorrMechKitchen Summer Design Day, ! Name + {6356463a-d5c6-47ec-8686-b8e89dddfd62}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 27, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 27; ! Value Until Time 3 + +OS:Schedule:Day, + {684ccb98-0868-49df-9765-08b824809bdf}, ! Handle + SecondarySchool ClgSetp BathCorrMechKitchen Winter Design Day, ! Name + {6356463a-d5c6-47ec-8686-b8e89dddfd62}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 27; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {3181e006-ef48-47af-bd5d-8ab7033c0747}, ! Handle + SecondarySchool HtgSetp, ! Name + {5482b999-ffb1-4bc3-b47e-f81db0418b83}, ! Schedule Type Limits Name + {94b73220-28e4-4e18-b0af-592e83e71f2f}, ! Default Day Schedule Name + {2ad00ff1-176f-4019-89aa-df84e836c659}, ! Summer Design Day Schedule Name + {c67102f1-fafc-46ae-852c-c3f8c5d1944d}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {94b73220-28e4-4e18-b0af-592e83e71f2f}, ! Handle + SecondarySchool HtgSetp Default Schedule, ! Name + {5482b999-ffb1-4bc3-b47e-f81db0418b83}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 16, !- Value Until Time 1 + 21, !- Hour 2 + 0, !- Minute 2 + 21, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 16; !- Value Until Time 3 + +OS:Schedule:Rule, + {08186eee-2645-4ab1-8e64-cf624b5a2ea9}, ! Handle + SecondarySchool HtgSetp Rule 2, ! Name + {3181e006-ef48-47af-bd5d-8ab7033c0747}, ! Schedule Ruleset Name + 1, ! Rule Order + {334b6144-c06e-4abd-a4f1-e506adf065a8}, ! Day Schedule Name + Yes, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {334b6144-c06e-4abd-a4f1-e506adf065a8}, ! Handle + SecondarySchool HtgSetp Rule 2 Day Schedule, ! Name + {5482b999-ffb1-4bc3-b47e-f81db0418b83}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 16, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 21, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 16; ! Value Until Time 3 + +OS:Schedule:Day, + {c67102f1-fafc-46ae-852c-c3f8c5d1944d}, ! Handle + SecondarySchool HtgSetp Winter Design Day, ! Name + {5482b999-ffb1-4bc3-b47e-f81db0418b83}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 21; ! Value Until Time 1 + +OS:Schedule:Day, + {2ad00ff1-176f-4019-89aa-df84e836c659}, ! Handle + SecondarySchool HtgSetp Summer Design Day, ! Name + {5482b999-ffb1-4bc3-b47e-f81db0418b83}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 16; ! Value Until Time 1 + +OS:Schedule:Rule, + {910abfe3-64d4-4657-a243-4fc625be5852}, ! Handle + SecondarySchool HtgSetp Rule 1, ! Name + {3181e006-ef48-47af-bd5d-8ab7033c0747}, ! Schedule Ruleset Name + 0, ! Rule Order + {bd37b519-97b4-440a-a739-199c7f17951c}, ! Day Schedule Name + Yes, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {bd37b519-97b4-440a-a739-199c7f17951c}, ! Handle + SecondarySchool HtgSetp Rule 1 Day Schedule, ! Name + {5482b999-ffb1-4bc3-b47e-f81db0418b83}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 16, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 21, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 16; ! Value Until Time 3 + +OS:Schedule:Ruleset, + {6050b866-b11c-4448-b39d-3e11bbe44c31}, ! Handle + SecondarySchool Kitchen Gas, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {3f1e54c8-2a8c-4361-a224-c15b2147ac36}, ! Default Day Schedule Name + {5bafc395-ec53-4eeb-8a52-768ca2b53cb9}, ! Summer Design Day Schedule Name + {d5cb4250-277f-4d3b-8a20-9d9e818f995e}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {3f1e54c8-2a8c-4361-a224-c15b2147ac36}, ! Handle + SecondarySchool Kitchen Gas Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.02, !- Value Until Time 1 + 10, !- Hour 2 + 0, !- Minute 2 + 0.15, !- Value Until Time 2 + 13, !- Hour 3 + 0, !- Minute 3 + 0.2, !- Value Until Time 3 + 15, !- Hour 4 + 0, !- Minute 4 + 0.1, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0.02; !- Value Until Time 5 + +OS:Schedule:Rule, + {ec5f23df-7789-4b87-8bff-aca225137e46}, ! Handle + SecondarySchool Kitchen Gas Rule 5, ! Name + {6050b866-b11c-4448-b39d-3e11bbe44c31}, ! Schedule Ruleset Name + 4, ! Rule Order + {b332fedc-a6fb-409c-a5d3-e0556d0e0e43}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {b332fedc-a6fb-409c-a5d3-e0556d0e0e43}, ! Handle + SecondarySchool Kitchen Gas Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.02; ! Value Until Time 1 + +OS:Schedule:Rule, + {ac5db8d2-69ac-4301-80e9-ac8f9710b227}, ! Handle + SecondarySchool Kitchen Gas Rule 4, ! Name + {6050b866-b11c-4448-b39d-3e11bbe44c31}, ! Schedule Ruleset Name + 3, ! Rule Order + {11a02490-4086-4064-9a11-4f2d3b9b100e}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {11a02490-4086-4064-9a11-4f2d3b9b100e}, ! Handle + SecondarySchool Kitchen Gas Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.02, ! Value Until Time 1 + 10, ! Hour 2 + 0, ! Minute 2 + 0.10000000000000001, ! Value Until Time 2 + 13, ! Hour 3 + 0, ! Minute 3 + 0.14999999999999999, ! Value Until Time 3 + 15, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.02; ! Value Until Time 5 + +OS:Schedule:Rule, + {5b13f4d7-b6f1-462f-b516-730db4d9f046}, ! Handle + SecondarySchool Kitchen Gas Rule 3, ! Name + {6050b866-b11c-4448-b39d-3e11bbe44c31}, ! Schedule Ruleset Name + 2, ! Rule Order + {91e30fab-9f28-4a42-ac0f-f03d78defd2a}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {91e30fab-9f28-4a42-ac0f-f03d78defd2a}, ! Handle + SecondarySchool Kitchen Gas Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.02; ! Value Until Time 1 + +OS:Schedule:Rule, + {51654735-9473-452d-a6cb-0c1352b97e03}, ! Handle + SecondarySchool Kitchen Gas Rule 2, ! Name + {6050b866-b11c-4448-b39d-3e11bbe44c31}, ! Schedule Ruleset Name + 1, ! Rule Order + {3e05726b-b87d-4a82-af1d-258679e8c11d}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {3e05726b-b87d-4a82-af1d-258679e8c11d}, ! Handle + SecondarySchool Kitchen Gas Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.02, ! Value Until Time 1 + 10, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 13, ! Hour 3 + 0, ! Minute 3 + 0.20000000000000001, ! Value Until Time 3 + 15, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.02; ! Value Until Time 5 + +OS:Schedule:Day, + {5bafc395-ec53-4eeb-8a52-768ca2b53cb9}, ! Handle + SecondarySchool Kitchen Gas Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.02, ! Value Until Time 1 + 10, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 13, ! Hour 3 + 0, ! Minute 3 + 0.20000000000000001, ! Value Until Time 3 + 15, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.02; ! Value Until Time 5 + +OS:Schedule:Rule, + {eaa0baad-2a24-4583-9021-456fa5e858b4}, ! Handle + SecondarySchool Kitchen Gas Rule 1, ! Name + {6050b866-b11c-4448-b39d-3e11bbe44c31}, ! Schedule Ruleset Name + 0, ! Rule Order + {28478815-82f7-4787-a020-92d133feeb6c}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {28478815-82f7-4787-a020-92d133feeb6c}, ! Handle + SecondarySchool Kitchen Gas Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.02; ! Value Until Time 1 + +OS:Schedule:Day, + {d5cb4250-277f-4d3b-8a20-9d9e818f995e}, ! Handle + SecondarySchool Kitchen Gas Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.02; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {83168bf5-8697-4081-a040-34e22a7061ad}, ! Handle + SecondarySchool Kitchen Equip, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {5f9c51a5-8d49-467c-a79b-af3f58cb6030}, ! Default Day Schedule Name + {19f2304a-2b5b-434e-bd6d-35c33aab2ad4}, ! Summer Design Day Schedule Name + {e328e02f-0902-45fa-a503-a29b6f970da2}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {5f9c51a5-8d49-467c-a79b-af3f58cb6030}, ! Handle + SecondarySchool Kitchen Equip Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.1, !- Value Until Time 1 + 10, !- Hour 2 + 0, !- Minute 2 + 0.15, !- Value Until Time 2 + 13, !- Hour 3 + 0, !- Minute 3 + 0.25, !- Value Until Time 3 + 15, !- Hour 4 + 0, !- Minute 4 + 0.15, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0.1; !- Value Until Time 5 + +OS:Schedule:Rule, + {8ea5a61d-9e9f-4fd7-a191-66d1b0dabf02}, ! Handle + SecondarySchool Kitchen Equip Rule 5, ! Name + {83168bf5-8697-4081-a040-34e22a7061ad}, ! Schedule Ruleset Name + 4, ! Rule Order + {91ff9c55-7f56-490a-b489-24005ee4c59d}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {91ff9c55-7f56-490a-b489-24005ee4c59d}, ! Handle + SecondarySchool Kitchen Equip Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.10000000000000001; ! Value Until Time 1 + +OS:Schedule:Rule, + {c38b7a11-e0a4-4996-8b3d-660b23a2bab0}, ! Handle + SecondarySchool Kitchen Equip Rule 4, ! Name + {83168bf5-8697-4081-a040-34e22a7061ad}, ! Schedule Ruleset Name + 3, ! Rule Order + {5fe08680-8f3e-4152-8cbe-8ec25880ef8e}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {5fe08680-8f3e-4152-8cbe-8ec25880ef8e}, ! Handle + SecondarySchool Kitchen Equip Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.10000000000000001, ! Value Until Time 1 + 10, ! Hour 2 + 0, ! Minute 2 + 0.13, ! Value Until Time 2 + 13, ! Hour 3 + 0, ! Minute 3 + 0.20000000000000001, ! Value Until Time 3 + 15, ! Hour 4 + 0, ! Minute 4 + 0.13, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.10000000000000001; ! Value Until Time 5 + +OS:Schedule:Rule, + {7116ef44-21d8-486e-8329-357c5ed957a8}, ! Handle + SecondarySchool Kitchen Equip Rule 3, ! Name + {83168bf5-8697-4081-a040-34e22a7061ad}, ! Schedule Ruleset Name + 2, ! Rule Order + {5217b53b-6d1a-4e2f-95e6-22fd8a4def90}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {5217b53b-6d1a-4e2f-95e6-22fd8a4def90}, ! Handle + SecondarySchool Kitchen Equip Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.10000000000000001; ! Value Until Time 1 + +OS:Schedule:Rule, + {0cda9609-aa42-456d-a7d4-72b97515dfd7}, ! Handle + SecondarySchool Kitchen Equip Rule 2, ! Name + {83168bf5-8697-4081-a040-34e22a7061ad}, ! Schedule Ruleset Name + 1, ! Rule Order + {622408da-8920-4f40-97ce-3aa655fb260d}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {622408da-8920-4f40-97ce-3aa655fb260d}, ! Handle + SecondarySchool Kitchen Equip Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.10000000000000001, ! Value Until Time 1 + 10, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 13, ! Hour 3 + 0, ! Minute 3 + 0.25, ! Value Until Time 3 + 15, ! Hour 4 + 0, ! Minute 4 + 0.14999999999999999, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.10000000000000001; ! Value Until Time 5 + +OS:Schedule:Day, + {19f2304a-2b5b-434e-bd6d-35c33aab2ad4}, ! Handle + SecondarySchool Kitchen Equip Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.10000000000000001, ! Value Until Time 1 + 10, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 13, ! Hour 3 + 0, ! Minute 3 + 0.25, ! Value Until Time 3 + 15, ! Hour 4 + 0, ! Minute 4 + 0.14999999999999999, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.10000000000000001; ! Value Until Time 5 + +OS:Schedule:Rule, + {87b1d6ca-5e10-4294-a73a-11aa58049b6d}, ! Handle + SecondarySchool Kitchen Equip Rule 1, ! Name + {83168bf5-8697-4081-a040-34e22a7061ad}, ! Schedule Ruleset Name + 0, ! Rule Order + {4e38e173-989a-4789-967c-212021291406}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {4e38e173-989a-4789-967c-212021291406}, ! Handle + SecondarySchool Kitchen Equip Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.10000000000000001; ! Value Until Time 1 + +OS:Schedule:Day, + {e328e02f-0902-45fa-a503-a29b6f970da2}, ! Handle + SecondarySchool Kitchen Equip Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.10000000000000001; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {91048d4e-942a-4e6e-acd9-062dc682ea52}, ! Handle + SecondarySchool Clothing, ! Name + {e814256c-c475-4870-9ed4-5feb769f3e3c}, ! Schedule Type Limits Name + {e026fa9a-66be-49ae-83ab-ff247082479c}, ! Default Day Schedule Name + {5950c758-0459-4dc4-9963-2253e8322bcc}, ! Summer Design Day Schedule Name + {b90bd1d6-bf66-4f1a-8096-4f61308d76f4}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {e026fa9a-66be-49ae-83ab-ff247082479c}, ! Handle + SecondarySchool Clothing Default Schedule, ! Name + {e814256c-c475-4870-9ed4-5feb769f3e3c}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1.1; !- Value Until Time 1 + +OS:Schedule:Day, + {b90bd1d6-bf66-4f1a-8096-4f61308d76f4}, ! Handle + SecondarySchool Clothing Winter Design Day, ! Name + {e814256c-c475-4870-9ed4-5feb769f3e3c}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1.1000000000000001; ! Value Until Time 1 + +OS:Schedule:Rule, + {c72a27e5-855f-4a26-846f-49803b5b0b64}, ! Handle + SecondarySchool Clothing Rule 2, ! Name + {91048d4e-942a-4e6e-acd9-062dc682ea52}, ! Schedule Ruleset Name + 1, ! Rule Order + {dbee4813-cc5e-43ed-9908-38b4db17f196}, ! Day Schedule Name + Yes, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 5, ! Start Month + 1, ! Start Day + 9, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {dbee4813-cc5e-43ed-9908-38b4db17f196}, ! Handle + SecondarySchool Clothing Rule 2 Day Schedule, ! Name + {e814256c-c475-4870-9ed4-5feb769f3e3c}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.59999999999999998; ! Value Until Time 1 + +OS:Schedule:Day, + {5950c758-0459-4dc4-9963-2253e8322bcc}, ! Handle + SecondarySchool Clothing Summer Design Day, ! Name + {e814256c-c475-4870-9ed4-5feb769f3e3c}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.59999999999999998; ! Value Until Time 1 + +OS:Schedule:Rule, + {e9024904-d13a-44c9-8551-4bf9c5cd6338}, ! Handle + SecondarySchool Clothing Rule 1, ! Name + {91048d4e-942a-4e6e-acd9-062dc682ea52}, ! Schedule Ruleset Name + 0, ! Rule Order + {54c45dab-c110-4bc6-b9a1-4cccca06e5d8}, ! Day Schedule Name + Yes, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 10, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {54c45dab-c110-4bc6-b9a1-4cccca06e5d8}, ! Handle + SecondarySchool Clothing Rule 1 Day Schedule, ! Name + {e814256c-c475-4870-9ed4-5feb769f3e3c}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1.1000000000000001; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {29d12490-c9b5-433a-b02c-ae4de43e11a8}, ! Handle + SecondarySchool Kitchen Exhaust, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {7ff1654c-9fe9-4c96-8e15-516e161d0c1b}, ! Default Day Schedule Name + {35a6f363-5707-43bb-adee-105bf2ff0fd5}, ! Summer Design Day Schedule Name + {e0b7ef6c-dc79-4538-bd58-13c00b50cbca}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {7ff1654c-9fe9-4c96-8e15-516e161d0c1b}, ! Handle + SecondarySchool Kitchen Exhaust Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 21, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {35a6f363-5707-43bb-adee-105bf2ff0fd5}, ! Handle + SecondarySchool Kitchen Exhaust Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 1, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0; ! Value Until Time 3 + +OS:Schedule:Rule, + {8be183d8-a51b-4bad-865e-210b7ff04472}, ! Handle + SecondarySchool Kitchen Exhaust Rule 1, ! Name + {29d12490-c9b5-433a-b02c-ae4de43e11a8}, ! Schedule Ruleset Name + 0, ! Rule Order + {733f4a1d-4617-409e-a88e-fba4dd0cf3b8}, ! Day Schedule Name + Yes, ! 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, + {733f4a1d-4617-409e-a88e-fba4dd0cf3b8}, ! Handle + SecondarySchool Kitchen Exhaust Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {e0b7ef6c-dc79-4538-bd58-13c00b50cbca}, ! Handle + SecondarySchool Kitchen Exhaust Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {dc0a8402-2022-4dfc-8982-6f0b06aca0b2}, ! Handle + SecondarySchool BLDG ELEVATORS, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {f3bbb325-72a3-49ab-b2e9-0464298c6ce8}, ! Default Day Schedule Name + {b1570f4a-38a4-4053-b816-b7aed56ac73c}, ! Summer Design Day Schedule Name + {ddd2f2b8-6333-4c55-9c24-25c96a891970}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {f3bbb325-72a3-49ab-b2e9-0464298c6ce8}, ! Handle + SecondarySchool BLDG ELEVATORS Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 15, !- Hour 2 + 0, !- Minute 2 + 0.3, !- Value Until Time 2 + 16, !- Hour 3 + 0, !- Minute 3 + 0.15, !- Value Until Time 3 + 24, !- Hour 4 + 0, !- Minute 4 + 0; !- Value Until Time 4 + +OS:Schedule:Day, + {b1570f4a-38a4-4053-b816-b7aed56ac73c}, ! Handle + SecondarySchool BLDG ELEVATORS Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 15, ! Hour 2 + 0, ! Minute 2 + 0.29999999999999999, ! Value Until Time 2 + 16, ! Hour 3 + 0, ! Minute 3 + 0.14999999999999999, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {3056091c-474b-4fe2-9240-30daefdff73d}, ! Handle + SecondarySchool BLDG ELEVATORS Rule 1, ! Name + {dc0a8402-2022-4dfc-8982-6f0b06aca0b2}, ! Schedule Ruleset Name + 0, ! Rule Order + {bd7158a9-b311-4191-8087-8eac3de36329}, ! Day Schedule Name + Yes, ! 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, + {bd7158a9-b311-4191-8087-8eac3de36329}, ! Handle + SecondarySchool BLDG ELEVATORS Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {ddd2f2b8-6333-4c55-9c24-25c96a891970}, ! Handle + SecondarySchool BLDG ELEVATORS Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {e92b1cb9-308b-42a5-b354-c34706c3f424}, ! Handle + SecondarySchool Infil, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {69e788bb-f0ad-4c54-9d91-88405a494a26}, ! Default Day Schedule Name + {158126fa-a4b9-4998-9bf3-03e05edd5b65}, ! Summer Design Day Schedule Name + {59292c1e-0654-4ff3-97b2-07d61d2e8ca5}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {69e788bb-f0ad-4c54-9d91-88405a494a26}, ! Handle + SecondarySchool Infil Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 21, !- Hour 2 + 0, !- Minute 2 + 0.5, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Day, + {59292c1e-0654-4ff3-97b2-07d61d2e8ca5}, ! Handle + SecondarySchool Infil Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 0.5, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Day, + {158126fa-a4b9-4998-9bf3-03e05edd5b65}, ! Handle + SecondarySchool Infil Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 0.5, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Ruleset, + {b80c5984-52bf-4454-828b-c483ae711bd3}, ! Handle + SecondarySchool Auditorium Occ, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {71520bc7-74b7-44c1-9a0a-cc6f4b27a95f}, ! Default Day Schedule Name + {0b5490a8-c526-40a3-96a9-444fe0da467a}, ! Summer Design Day Schedule Name + {c4a1ddda-4010-4512-9565-42c2fdb60b83}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {71520bc7-74b7-44c1-9a0a-cc6f4b27a95f}, ! Handle + SecondarySchool Auditorium Occ Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 15, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 17, !- Hour 3 + 0, !- Minute 3 + 0.95, !- Value Until Time 3 + 20, !- Hour 4 + 0, !- Minute 4 + 0.1, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0; !- Value Until Time 5 + +OS:Schedule:Rule, + {39344637-503f-46ad-ae15-10dc3e2c24de}, ! Handle + SecondarySchool Auditorium Occ Rule 5, ! Name + {b80c5984-52bf-4454-828b-c483ae711bd3}, ! Schedule Ruleset Name + 4, ! Rule Order + {5d3ffe24-1910-439a-9feb-e192fb95283d}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {5d3ffe24-1910-439a-9feb-e192fb95283d}, ! Handle + SecondarySchool Auditorium Occ Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {3e6b6c0d-ddcc-40d2-917f-134388ba6e74}, ! Handle + SecondarySchool Auditorium Occ Rule 4, ! Name + {b80c5984-52bf-4454-828b-c483ae711bd3}, ! Schedule Ruleset Name + 3, ! Rule Order + {98cea2fc-c272-4647-87c7-6fd37c4cd37e}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {98cea2fc-c272-4647-87c7-6fd37c4cd37e}, ! Handle + SecondarySchool Auditorium Occ Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 19, ! Hour 3 + 0, ! Minute 3 + 0.34999999999999998, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {87df0dc4-99e1-4221-b1db-f28d72b872fe}, ! Handle + SecondarySchool Auditorium Occ Rule 3, ! Name + {b80c5984-52bf-4454-828b-c483ae711bd3}, ! Schedule Ruleset Name + 2, ! Rule Order + {75c3be67-c76d-4097-8efd-3eac206e46e0}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {75c3be67-c76d-4097-8efd-3eac206e46e0}, ! Handle + SecondarySchool Auditorium Occ Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {676ea693-f800-4142-8f80-aaf072fd79b1}, ! Handle + SecondarySchool Auditorium Occ Rule 2, ! Name + {b80c5984-52bf-4454-828b-c483ae711bd3}, ! Schedule Ruleset Name + 1, ! Rule Order + {834aa7b0-96c9-437a-af5c-43329ed416b4}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {834aa7b0-96c9-437a-af5c-43329ed416b4}, ! Handle + SecondarySchool Auditorium Occ Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 15, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 17, ! Hour 3 + 0, ! Minute 3 + 0.94999999999999996, ! Value Until Time 3 + 20, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0; ! Value Until Time 5 + +OS:Schedule:Day, + {0b5490a8-c526-40a3-96a9-444fe0da467a}, ! Handle + SecondarySchool Auditorium Occ Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 15, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 17, ! Hour 3 + 0, ! Minute 3 + 0.94999999999999996, ! Value Until Time 3 + 20, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0; ! Value Until Time 5 + +OS:Schedule:Rule, + {e9e76513-ba6f-4f73-ad05-e881a13af176}, ! Handle + SecondarySchool Auditorium Occ Rule 1, ! Name + {b80c5984-52bf-4454-828b-c483ae711bd3}, ! Schedule Ruleset Name + 0, ! Rule Order + {c609f785-b73a-4dda-8e74-e21b3abeb945}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {c609f785-b73a-4dda-8e74-e21b3abeb945}, ! Handle + SecondarySchool Auditorium Occ Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {c4a1ddda-4010-4512-9565-42c2fdb60b83}, ! Handle + SecondarySchool Auditorium Occ Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {c7e91b09-2d50-4b42-ae55-58e351cc8597}, ! Handle + SecondarySchool HtgSetp BathCorrMechKitchen, ! Name + {84419bc3-50bf-4341-a90b-060f549d326f}, ! Schedule Type Limits Name + {f3874aab-0835-49d5-80d5-e41bc51a2874}, ! Default Day Schedule Name + {a2e6e617-9650-463f-a638-5005ea3966ca}, ! Summer Design Day Schedule Name + {0c2e9bb7-838b-45ab-ad3b-9a96e37d7bdf}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {f3874aab-0835-49d5-80d5-e41bc51a2874}, ! Handle + SecondarySchool HtgSetp BathCorrMechKitchen Default Schedule, ! Name + {84419bc3-50bf-4341-a90b-060f549d326f}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 16; !- Value Until Time 1 + +OS:Schedule:Day, + {0c2e9bb7-838b-45ab-ad3b-9a96e37d7bdf}, ! Handle + SecondarySchool HtgSetp BathCorrMechKitchen Winter Design Day, ! Name + {84419bc3-50bf-4341-a90b-060f549d326f}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 16, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 21, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 16; ! Value Until Time 3 + +OS:Schedule:Day, + {a2e6e617-9650-463f-a638-5005ea3966ca}, ! Handle + SecondarySchool HtgSetp BathCorrMechKitchen Summer Design Day, ! Name + {84419bc3-50bf-4341-a90b-060f549d326f}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 16; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Handle + SecondarySchool Bldg Equip, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {7139d57d-4b0a-4a5d-9382-a4f78ef56a13}, ! Default Day Schedule Name + {01533fa2-61e3-46f1-af08-33c66a25571d}, ! Summer Design Day Schedule Name + {4184998c-a521-4add-b229-bac9d71951cb}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {7139d57d-4b0a-4a5d-9382-a4f78ef56a13}, ! Handle + SecondarySchool Bldg Equip Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.35, !- Value Until Time 1 + 17, !- Hour 2 + 0, !- Minute 2 + 0.95, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0.35; !- Value Until Time 3 + +OS:Schedule:Rule, + {2b7fa688-36a8-4e56-a3c6-d1e1ff0e6d09}, ! Handle + SecondarySchool Bldg Equip Rule 5, ! Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Schedule Ruleset Name + 4, ! Rule Order + {42f20f90-2303-4bf9-9eff-0905946e74d9}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {42f20f90-2303-4bf9-9eff-0905946e74d9}, ! Handle + SecondarySchool Bldg Equip Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.34999999999999998; ! Value Until Time 1 + +OS:Schedule:Rule, + {96f46714-aefc-47b0-a6ac-f74b64a893ca}, ! Handle + SecondarySchool Bldg Equip Rule 4, ! Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Schedule Ruleset Name + 3, ! Rule Order + {da22ffd1-9c94-4a4d-9dbc-a17c60cddc84}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {da22ffd1-9c94-4a4d-9dbc-a17c60cddc84}, ! Handle + SecondarySchool Bldg Equip Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.25, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.5, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.25; ! Value Until Time 3 + +OS:Schedule:Rule, + {a109fafa-7c37-446c-875b-f81194c2f02b}, ! Handle + SecondarySchool Bldg Equip Rule 3, ! Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Schedule Ruleset Name + 2, ! Rule Order + {a513f9de-c4a8-46ae-86ae-3264dde1b976}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {a513f9de-c4a8-46ae-86ae-3264dde1b976}, ! Handle + SecondarySchool Bldg Equip Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.25; ! Value Until Time 1 + +OS:Schedule:Rule, + {b531927e-09ee-47b3-bd97-66bffa470d2b}, ! Handle + SecondarySchool Bldg Equip Rule 2, ! Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Schedule Ruleset Name + 1, ! Rule Order + {3cacbb14-a844-4931-a893-22710b6608f9}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {3cacbb14-a844-4931-a893-22710b6608f9}, ! Handle + SecondarySchool Bldg Equip Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.34999999999999998, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.94999999999999996, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.34999999999999998; ! Value Until Time 3 + +OS:Schedule:Day, + {01533fa2-61e3-46f1-af08-33c66a25571d}, ! Handle + SecondarySchool Bldg Equip Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.34999999999999998, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.94999999999999996, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.34999999999999998; ! Value Until Time 3 + +OS:Schedule:Rule, + {8859b225-5dac-499e-85ca-5a219e812f6b}, ! Handle + SecondarySchool Bldg Equip Rule 1, ! Name + {c2575968-2b0b-4e98-a0b1-3650cb01ebc1}, ! Schedule Ruleset Name + 0, ! Rule Order + {cb86a897-5edf-4932-ba34-6c47191905e3}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {cb86a897-5edf-4932-ba34-6c47191905e3}, ! Handle + SecondarySchool Bldg Equip Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.34999999999999998; ! Value Until Time 1 + +OS:Schedule:Day, + {4184998c-a521-4add-b229-bac9d71951cb}, ! Handle + SecondarySchool Bldg Equip Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.34999999999999998; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {cf4d1851-e2ed-437a-b408-bf9a3f914289}, ! Handle + SecondarySchool Gym Occ, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {13574634-db3d-4cce-accf-39da43213e1f}, ! Default Day Schedule Name + {46b11c38-d1e3-4e33-873d-37f995aee1c9}, ! Summer Design Day Schedule Name + {8b3a87c7-644d-4c07-8f42-df20d1649e2a}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {13574634-db3d-4cce-accf-39da43213e1f}, ! Handle + SecondarySchool Gym Occ Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 16, !- Hour 2 + 0, !- Minute 2 + 0.35, !- Value Until Time 2 + 21, !- Hour 3 + 0, !- Minute 3 + 0.95, !- Value Until Time 3 + 24, !- Hour 4 + 0, !- Minute 4 + 0; !- Value Until Time 4 + +OS:Schedule:Rule, + {6bbb91c3-c7ab-49ad-b797-c531beb02e23}, ! Handle + SecondarySchool Gym Occ Rule 5, ! Name + {cf4d1851-e2ed-437a-b408-bf9a3f914289}, ! Schedule Ruleset Name + 4, ! Rule Order + {42f2d67e-0c2d-4f33-b490-3cf342a29c2a}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {42f2d67e-0c2d-4f33-b490-3cf342a29c2a}, ! Handle + SecondarySchool Gym Occ Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {8256b7e6-8cad-4007-b28c-f5ce5df58801}, ! Handle + SecondarySchool Gym Occ Rule 4, ! Name + {cf4d1851-e2ed-437a-b408-bf9a3f914289}, ! Schedule Ruleset Name + 3, ! Rule Order + {a4216992-620f-4c22-bd1e-1155fdb0c732}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {a4216992-620f-4c22-bd1e-1155fdb0c732}, ! Handle + SecondarySchool Gym Occ Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 16, ! Hour 2 + 0, ! Minute 2 + 0.34999999999999998, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.34999999999999998, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {8f545784-d461-4f9e-9e58-74c24df6c8a8}, ! Handle + SecondarySchool Gym Occ Rule 3, ! Name + {cf4d1851-e2ed-437a-b408-bf9a3f914289}, ! Schedule Ruleset Name + 2, ! Rule Order + {c0cbb68b-74db-475f-9177-a1e5e726fc90}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {c0cbb68b-74db-475f-9177-a1e5e726fc90}, ! Handle + SecondarySchool Gym Occ Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {83ac1bc9-fb9d-4c75-b966-f4fd2f13e208}, ! Handle + SecondarySchool Gym Occ Rule 2, ! Name + {cf4d1851-e2ed-437a-b408-bf9a3f914289}, ! Schedule Ruleset Name + 1, ! Rule Order + {8dffd3b7-f56e-49e2-9a1e-3e22b023ff5b}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {8dffd3b7-f56e-49e2-9a1e-3e22b023ff5b}, ! Handle + SecondarySchool Gym Occ Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 16, ! Hour 2 + 0, ! Minute 2 + 0.34999999999999998, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.94999999999999996, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Day, + {46b11c38-d1e3-4e33-873d-37f995aee1c9}, ! Handle + SecondarySchool Gym Occ Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 16, ! Hour 2 + 0, ! Minute 2 + 0.34999999999999998, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.94999999999999996, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {b3594e35-491c-4783-83d1-5ee659aeb9c0}, ! Handle + SecondarySchool Gym Occ Rule 1, ! Name + {cf4d1851-e2ed-437a-b408-bf9a3f914289}, ! Schedule Ruleset Name + 0, ! Rule Order + {5f2fc20c-9361-4f5b-859c-04052f382cb5}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {5f2fc20c-9361-4f5b-859c-04052f382cb5}, ! Handle + SecondarySchool Gym Occ Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {8b3a87c7-644d-4c07-8f42-df20d1649e2a}, ! Handle + SecondarySchool Gym Occ Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {d14b894d-6718-40f1-bb81-291c435485ea}, ! Handle + Always On, ! Name + {06c36c03-d6f4-466b-a545-ae9a1064c023}, ! Schedule Type Limits Name + {622bfe03-dac5-4ca8-a05a-2d55bd197a9f}, ! Default Day Schedule Name + {759c12ce-a021-48a3-99e6-eb45e3751a24}, ! Summer Design Day Schedule Name + {76189472-ebe5-4dd1-a010-5e4884775e18}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {622bfe03-dac5-4ca8-a05a-2d55bd197a9f}, ! Handle + Always On Default Schedule, ! Name + {06c36c03-d6f4-466b-a545-ae9a1064c023}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {76189472-ebe5-4dd1-a010-5e4884775e18}, ! Handle + Always On Winter Design Day, ! Name + {06c36c03-d6f4-466b-a545-ae9a1064c023}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {759c12ce-a021-48a3-99e6-eb45e3751a24}, ! Handle + Always On Summer Design Day, ! Name + {06c36c03-d6f4-466b-a545-ae9a1064c023}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {fc9416eb-619d-4172-b513-019cb06cf615}, ! Handle + Always Off, ! Name + {002b458c-ec3f-4781-9901-cdaee085cee6}, ! Schedule Type Limits Name + {5b714007-01b2-41a4-b2d9-abd962db630c}, ! Default Day Schedule Name + {aff018dd-c4dd-4437-904b-58b1d8a04d9a}, ! Summer Design Day Schedule Name + {31a76b64-c4fe-4ffe-be53-5f5e20a05288}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {5b714007-01b2-41a4-b2d9-abd962db630c}, ! Handle + Always Off Default Schedule, ! Name + {002b458c-ec3f-4781-9901-cdaee085cee6}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {31a76b64-c4fe-4ffe-be53-5f5e20a05288}, ! Handle + Always Off Winter Design Day, ! Name + {002b458c-ec3f-4781-9901-cdaee085cee6}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {aff018dd-c4dd-4437-904b-58b1d8a04d9a}, ! Handle + Always Off Summer Design Day, ! Name + {002b458c-ec3f-4781-9901-cdaee085cee6}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {b65c9ad7-8b2b-4e42-8cb0-3a253a50022b}, ! Handle + SecondarySchool Office Occ, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {5180399a-9ca7-4abc-b1d5-00e60664e712}, ! Default Day Schedule Name + {5466e471-3aa9-4866-91a4-9eb4fb741e0b}, ! Summer Design Day Schedule Name + {5113681d-51a8-440b-9d33-b3359cc5afa6}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {5180399a-9ca7-4abc-b1d5-00e60664e712}, ! Handle + SecondarySchool Office Occ Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 17, !- Hour 2 + 0, !- Minute 2 + 0.95, !- Value Until Time 2 + 21, !- Hour 3 + 0, !- Minute 3 + 0.15, !- Value Until Time 3 + 24, !- Hour 4 + 0, !- Minute 4 + 0; !- Value Until Time 4 + +OS:Schedule:Rule, + {f515be48-fe9d-4f9d-979a-b4ec89a844a6}, ! Handle + SecondarySchool Office Occ Rule 5, ! Name + {b65c9ad7-8b2b-4e42-8cb0-3a253a50022b}, ! Schedule Ruleset Name + 4, ! Rule Order + {7408e6cb-8b24-4c5d-bc04-ba3b4d9dbac1}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {7408e6cb-8b24-4c5d-bc04-ba3b4d9dbac1}, ! Handle + SecondarySchool Office Occ Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {4d8d3cd6-e93b-4945-a6e7-30a64f4d9ff5}, ! Handle + SecondarySchool Office Occ Rule 4, ! Name + {b65c9ad7-8b2b-4e42-8cb0-3a253a50022b}, ! Schedule Ruleset Name + 3, ! Rule Order + {04661420-575f-4a47-b133-f53bdc213d75}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {04661420-575f-4a47-b133-f53bdc213d75}, ! Handle + SecondarySchool Office Occ Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.5, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0; ! Value Until Time 3 + +OS:Schedule:Rule, + {051ee3d5-4e70-44b4-9dde-ac9d58e35d9b}, ! Handle + SecondarySchool Office Occ Rule 3, ! Name + {b65c9ad7-8b2b-4e42-8cb0-3a253a50022b}, ! Schedule Ruleset Name + 2, ! Rule Order + {6d720aad-3524-494c-a00c-3883fa72d4c1}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {6d720aad-3524-494c-a00c-3883fa72d4c1}, ! Handle + SecondarySchool Office Occ Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {88f8cfe7-1eba-4615-a40f-8ccd851e7c82}, ! Handle + SecondarySchool Office Occ Rule 2, ! Name + {b65c9ad7-8b2b-4e42-8cb0-3a253a50022b}, ! Schedule Ruleset Name + 1, ! Rule Order + {b6feac32-d236-4a43-9795-4ef520efb8cc}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {b6feac32-d236-4a43-9795-4ef520efb8cc}, ! Handle + SecondarySchool Office Occ Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.94999999999999996, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.14999999999999999, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Day, + {5466e471-3aa9-4866-91a4-9eb4fb741e0b}, ! Handle + SecondarySchool Office Occ Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 17, ! Hour 2 + 0, ! Minute 2 + 0.94999999999999996, ! Value Until Time 2 + 21, ! Hour 3 + 0, ! Minute 3 + 0.14999999999999999, ! Value Until Time 3 + 24, ! Hour 4 + 0, ! Minute 4 + 0; ! Value Until Time 4 + +OS:Schedule:Rule, + {25a159de-67ee-4fd4-98ad-8a0cec39e442}, ! Handle + SecondarySchool Office Occ Rule 1, ! Name + {b65c9ad7-8b2b-4e42-8cb0-3a253a50022b}, ! Schedule Ruleset Name + 0, ! Rule Order + {fe0cc953-41e4-46f3-a22b-3a3cbaf16c34}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {fe0cc953-41e4-46f3-a22b-3a3cbaf16c34}, ! Handle + SecondarySchool Office Occ Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {5113681d-51a8-440b-9d33-b3359cc5afa6}, ! Handle + SecondarySchool Office Occ Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {dd0d1b07-2eac-4964-a930-801630ed9866}, ! Handle + SecondarySchool Cafeteria Bldg Occ, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {3a9564b1-efd1-4e4b-859a-034921035805}, ! Default Day Schedule Name + {d216fddb-2cf2-4c3e-9b24-a15981f2a779}, ! Summer Design Day Schedule Name + {38d10aa1-513c-4812-b5ba-02ba84d31ff4}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {3a9564b1-efd1-4e4b-859a-034921035805}, ! Handle + SecondarySchool Cafeteria Bldg Occ Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 9, !- Hour 2 + 0, !- Minute 2 + 0.15, !- Value Until Time 2 + 11, !- Hour 3 + 0, !- Minute 3 + 0.05, !- Value Until Time 3 + 13, !- Hour 4 + 0, !- Minute 4 + 0.95, !- Value Until Time 4 + 15, !- Hour 5 + 0, !- Minute 5 + 0.15, !- Value Until Time 5 + 24, !- Hour 6 + 0, !- Minute 6 + 0; !- Value Until Time 6 + +OS:Schedule:Rule, + {072bbdf3-39af-469b-8de5-2f92e1e66a81}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 5, ! Name + {dd0d1b07-2eac-4964-a930-801630ed9866}, ! Schedule Ruleset Name + 4, ! Rule Order + {159d2f12-fe28-4eab-bbb8-2c263a05d472}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {159d2f12-fe28-4eab-bbb8-2c263a05d472}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {e14f0a34-ebdd-48fc-8957-ef2cc2bb3378}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 4, ! Name + {dd0d1b07-2eac-4964-a930-801630ed9866}, ! Schedule Ruleset Name + 3, ! Rule Order + {e2933b5e-6a91-4506-9b5f-64f3d424dc3a}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {e2933b5e-6a91-4506-9b5f-64f3d424dc3a}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 9, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 15, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0; ! Value Until Time 3 + +OS:Schedule:Rule, + {83659665-66e1-4a71-8b6f-d9bf853d5d6e}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 3, ! Name + {dd0d1b07-2eac-4964-a930-801630ed9866}, ! Schedule Ruleset Name + 2, ! Rule Order + {86822b32-1cda-4076-ac42-e6e23f5ededf}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {86822b32-1cda-4076-ac42-e6e23f5ededf}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {c55913f6-8141-4111-8600-faa8364b813c}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 2, ! Name + {dd0d1b07-2eac-4964-a930-801630ed9866}, ! Schedule Ruleset Name + 1, ! Rule Order + {f5d1bcb3-0de4-4029-ae26-d300417de367}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {f5d1bcb3-0de4-4029-ae26-d300417de367}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 9, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 11, ! Hour 3 + 0, ! Minute 3 + 0.050000000000000003, ! Value Until Time 3 + 13, ! Hour 4 + 0, ! Minute 4 + 0.94999999999999996, ! Value Until Time 4 + 15, ! Hour 5 + 0, ! Minute 5 + 0.14999999999999999, ! Value Until Time 5 + 24, ! Hour 6 + 0, ! Minute 6 + 0; ! Value Until Time 6 + +OS:Schedule:Day, + {d216fddb-2cf2-4c3e-9b24-a15981f2a779}, ! Handle + SecondarySchool Cafeteria Bldg Occ Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 9, ! Hour 2 + 0, ! Minute 2 + 0.14999999999999999, ! Value Until Time 2 + 11, ! Hour 3 + 0, ! Minute 3 + 0.050000000000000003, ! Value Until Time 3 + 13, ! Hour 4 + 0, ! Minute 4 + 0.94999999999999996, ! Value Until Time 4 + 15, ! Hour 5 + 0, ! Minute 5 + 0.14999999999999999, ! Value Until Time 5 + 24, ! Hour 6 + 0, ! Minute 6 + 0; ! Value Until Time 6 + +OS:Schedule:Rule, + {676b27cc-d5ab-4d90-ae58-5bf36cb1d235}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 1, ! Name + {dd0d1b07-2eac-4964-a930-801630ed9866}, ! Schedule Ruleset Name + 0, ! Rule Order + {61890a68-d351-4306-81c9-db5704903173}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {61890a68-d351-4306-81c9-db5704903173}, ! Handle + SecondarySchool Cafeteria Bldg Occ Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Day, + {38d10aa1-513c-4812-b5ba-02ba84d31ff4}, ! Handle + SecondarySchool Cafeteria Bldg Occ Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {b3bbba3f-bfb6-49ad-a277-ebc46ef21979}, ! Handle + SecondarySchool Activity, ! Name + {237119af-719d-4ff7-bf82-57eb24053c91}, ! Schedule Type Limits Name + {24b5fe0d-ae8c-4c1a-afbe-c20be4f45b17}, ! Default Day Schedule Name + {a1d8b723-097a-42cf-9995-ebcb1abde391}, ! Summer Design Day Schedule Name + {187f76e5-7849-40b7-a2d3-3a671e7e4fb6}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {24b5fe0d-ae8c-4c1a-afbe-c20be4f45b17}, ! Handle + SecondarySchool Activity Default Schedule, ! Name + {237119af-719d-4ff7-bf82-57eb24053c91}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 + +OS:Schedule:Day, + {187f76e5-7849-40b7-a2d3-3a671e7e4fb6}, ! Handle + SecondarySchool Activity Winter Design Day, ! Name + {237119af-719d-4ff7-bf82-57eb24053c91}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:Schedule:Day, + {a1d8b723-097a-42cf-9995-ebcb1abde391}, ! Handle + SecondarySchool Activity Summer Design Day, ! Name + {237119af-719d-4ff7-bf82-57eb24053c91}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:Schedule:Ruleset, + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Handle + SecondarySchool Bldg Light, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + {9c178e17-db10-4af7-8338-f34c5ab8f340}, ! Default Day Schedule Name + {a637e699-ab47-4ecc-9150-fa244d76f52d}, ! Summer Design Day Schedule Name + {aa312513-2d31-42bd-9a04-bec68061f909}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {9c178e17-db10-4af7-8338-f34c5ab8f340}, ! Handle + SecondarySchool Bldg Light Default Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 0.1773, !- Value Until Time 1 + 21, !- Hour 2 + 0, !- Minute 2 + 0.9, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0.1773; !- Value Until Time 3 + +OS:Schedule:Rule, + {cdfe7698-aafb-475f-8cb1-4eb1c5802a94}, ! Handle + SecondarySchool Bldg Light Rule 5, ! Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Schedule Ruleset Name + 4, ! Rule Order + {595d039b-b0d9-444b-9371-f272823cd447}, ! Day Schedule Name + Yes, ! 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 + 6, ! End Month + 30; ! End Day + +OS:Schedule:Day, + {595d039b-b0d9-444b-9371-f272823cd447}, ! Handle + SecondarySchool Bldg Light Rule 5 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.17730000000000001; ! Value Until Time 1 + +OS:Schedule:Rule, + {20659762-c392-41ec-93aa-13580b9b36c1}, ! Handle + SecondarySchool Bldg Light Rule 4, ! Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Schedule Ruleset Name + 3, ! Rule Order + {3288c993-a848-4e93-976b-205f4f05c3c5}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {3288c993-a848-4e93-976b-205f4f05c3c5}, ! Handle + SecondarySchool Bldg Light Rule 4 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, ! Hour 1 + 0, ! Minute 1 + 0.17730000000000001, ! Value Until Time 1 + 20, ! Hour 2 + 0, ! Minute 2 + 0.5, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.17730000000000001; ! Value Until Time 3 + +OS:Schedule:Rule, + {9227788b-0299-4c40-bd12-4f00ad77863e}, ! Handle + SecondarySchool Bldg Light Rule 3, ! Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Schedule Ruleset Name + 2, ! Rule Order + {e496600f-e4e6-4685-b0c2-7d4bc4122f59}, ! Day Schedule Name + Yes, ! 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 + 7, ! Start Month + 1, ! Start Day + 9, ! End Month + 1; ! End Day + +OS:Schedule:Day, + {e496600f-e4e6-4685-b0c2-7d4bc4122f59}, ! Handle + SecondarySchool Bldg Light Rule 3 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.17730000000000001; ! Value Until Time 1 + +OS:Schedule:Rule, + {1149ce0e-9729-4f0c-83ec-0615f9e8967c}, ! Handle + SecondarySchool Bldg Light Rule 2, ! Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Schedule Ruleset Name + 1, ! Rule Order + {78b22f1a-751e-4f19-a5be-bb9c2406008f}, ! Day Schedule Name + No, ! Apply Sunday + Yes, ! Apply Monday + Yes, ! Apply Tuesday + Yes, ! Apply Wednesday + Yes, ! Apply Thursday + Yes, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {78b22f1a-751e-4f19-a5be-bb9c2406008f}, ! Handle + SecondarySchool Bldg Light Rule 2 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 0.17730000000000001, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 0.90000000000000002, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.17730000000000001; ! Value Until Time 3 + +OS:Schedule:Day, + {a637e699-ab47-4ecc-9150-fa244d76f52d}, ! Handle + SecondarySchool Bldg Light Summer Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 7, ! Hour 1 + 0, ! Minute 1 + 0.17730000000000001, ! Value Until Time 1 + 21, ! Hour 2 + 0, ! Minute 2 + 0.90000000000000002, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.17730000000000001; ! Value Until Time 3 + +OS:Schedule:Rule, + {634f2422-ad1d-47e6-969b-3c54918e90da}, ! Handle + SecondarySchool Bldg Light Rule 1, ! Name + {6d296251-05a3-4300-ac16-a50e6a3dbe6d}, ! Schedule Ruleset Name + 0, ! Rule Order + {f4a0d96d-4f16-4eac-ac34-2907dcb3e410}, ! Day Schedule Name + Yes, ! 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 + 9, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {f4a0d96d-4f16-4eac-ac34-2907dcb3e410}, ! Handle + SecondarySchool Bldg Light Rule 1 Day Schedule, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.17730000000000001; ! Value Until Time 1 + +OS:Schedule:Day, + {aa312513-2d31-42bd-9a04-bec68061f909}, ! Handle + SecondarySchool Bldg Light Winter Design Day, ! Name + {e5ee9adb-591c-412d-84a5-a2040f867921}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.17730000000000001; ! Value Until Time 1 + +OS:ScheduleTypeLimits, + {5482b999-ffb1-4bc3-b47e-f81db0418b83}, ! Handle + Temperature 1, ! Name + , ! Lower Limit Value {BasedOnField A4} + , ! Upper Limit Value {BasedOnField A4} + Continuous, ! Numeric Type + Temperature; ! Unit Type + +OS:ScheduleTypeLimits, + {82c61da3-ef14-40d1-9843-cc13be933d4a}, ! Handle + Temperature 2, ! Name + , ! Lower Limit Value {BasedOnField A4} + , ! Upper Limit Value {BasedOnField A4} + Continuous, ! Numeric Type + Temperature; ! Unit Type + +OS:ScheduleTypeLimits, + {6356463a-d5c6-47ec-8686-b8e89dddfd62}, ! Handle + Temperature 3, ! Name + , ! Lower Limit Value {BasedOnField A4} + , ! Upper Limit Value {BasedOnField A4} + Continuous, ! Numeric Type + Temperature; ! Unit Type + +OS:ScheduleTypeLimits, + {237119af-719d-4ff7-bf82-57eb24053c91}, ! Handle + ActivityLevel, ! Name + 0, ! Lower Limit Value {BasedOnField A4} + , ! Upper Limit Value {BasedOnField A4} + Continuous, ! Numeric Type + ActivityLevel; ! Unit Type + +OS:ScheduleTypeLimits, + {84419bc3-50bf-4341-a90b-060f549d326f}, ! Handle + Temperature 4, ! Name + , ! Lower Limit Value {BasedOnField A4} + , ! Upper Limit Value {BasedOnField A4} + Continuous, ! Numeric Type + Temperature; ! Unit Type + +OS:ScheduleTypeLimits, + {06c36c03-d6f4-466b-a545-ae9a1064c023}, ! Handle + Fractional, ! Name + 0, ! Lower Limit Value {BasedOnField A4} + 1, ! Upper Limit Value {BasedOnField A4} + Continuous; ! Numeric Type + +OS:YearDescription, + {cd823687-4d94-4268-8a5d-549a303c1776}, !- Handle + , !- Calendar Year + Sunday; !- Day of Week for Start Day + +OS:Building, + {b56f49fd-4bd5-46b1-be78-a0e126b24483}, !- Handle + Secondary School, !- Name + , !- Building Sector Type + -0, !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + {f6c9890d-4fb2-4173-884a-8c6c03ed1670}, !- Space Type Name + {f7b68a59-87e0-4de6-8047-f75fef749334}, !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Standards Number of Stories + , !- Standards Number of Above Ground Stories + ; !- Standards Building Type + +OS:BuildingStory, + {50bc3895-09f6-41e5-ab30-91d7f09f1a2f}, !- Handle + Building Story 1, !- Name + 0, !- Nominal Z Coordinate {m} + 3.048, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {902cc960-2954-4671-a685-7f2c65da7370}; !- Group Rendering Name + +OS:Space, + {76ca9fb4-d09c-4a43-b13c-f84157f51665}, !- Handle + Space 101, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 7.12695618379875, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 0, !- Z Origin {m} + {50bc3895-09f6-41e5-ab30-91d7f09f1a2f}, !- Building Story Name + {d6dd14a7-0f35-40d8-ab3b-5f2ea0733eec}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {6c774126-c9d3-4c8a-b703-8e1577e2b587}, !- Handle + Surface 1, !- Name + Floor, !- Surface Type + , !- Construction Name + {76ca9fb4-d09c-4a43-b13c-f84157f51665}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7510a12f-79c0-4488-ba36-4923c219d8ef}, !- Handle + Surface 2, !- Name + Wall, !- Surface Type + , !- Construction Name + {76ca9fb4-d09c-4a43-b13c-f84157f51665}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {e588bf81-dd12-4e06-878a-93b4fb77623f}, !- Handle + Surface 3, !- Name + Wall, !- Surface Type + , !- Construction Name + {76ca9fb4-d09c-4a43-b13c-f84157f51665}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {27c2ff57-9a1d-4d73-ae7f-1a476ba2e73d}, !- Handle + Surface 4, !- Name + Wall, !- Surface Type + , !- Construction Name + {76ca9fb4-d09c-4a43-b13c-f84157f51665}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {071ccaa6-1176-472f-8aed-271c53e1098e}, !- Handle + Surface 5, !- Name + Wall, !- Surface Type + , !- Construction Name + {76ca9fb4-d09c-4a43-b13c-f84157f51665}, !- Space Name + Surface, !- Outside Boundary Condition + {462860d1-361a-469e-9122-cf482c891ec4}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {121e534c-d69d-4ce0-a5c5-da4e13d71eb1}, !- Handle + Surface 6, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {76ca9fb4-d09c-4a43-b13c-f84157f51665}, !- Space Name + Surface, !- Outside Boundary Condition + {88cf67c9-3525-467c-94d5-10c9aa3b90bf}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {97c57ad8-8097-472d-90fd-901067e6f1aa}, !- Handle + Space 102, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 13.2229561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 0, !- Z Origin {m} + {50bc3895-09f6-41e5-ab30-91d7f09f1a2f}, !- Building Story Name + {eef18cb7-dc4a-4ae2-bd2b-f0810a70d52d}; !- Thermal Zone Name + +OS:Surface, + {572fe093-69f2-4239-ad02-d05648b9a0a5}, !- Handle + Surface 7, !- Name + Floor, !- Surface Type + , !- Construction Name + {97c57ad8-8097-472d-90fd-901067e6f1aa}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b5819705-c4bc-43fc-b6be-9614ccd3759c}, !- Handle + Surface 8, !- Name + Wall, !- Surface Type + , !- Construction Name + {97c57ad8-8097-472d-90fd-901067e6f1aa}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {462860d1-361a-469e-9122-cf482c891ec4}, !- Handle + Surface 9, !- Name + Wall, !- Surface Type + , !- Construction Name + {97c57ad8-8097-472d-90fd-901067e6f1aa}, !- Space Name + Surface, !- Outside Boundary Condition + {071ccaa6-1176-472f-8aed-271c53e1098e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9e02d692-8c93-48f9-9024-71537d9814bd}, !- Handle + Surface 10, !- Name + Wall, !- Surface Type + , !- Construction Name + {97c57ad8-8097-472d-90fd-901067e6f1aa}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0b5c3e45-e975-477b-b4e2-a4ebe8d6f0ea}, !- Handle + Surface 11, !- Name + Wall, !- Surface Type + , !- Construction Name + {97c57ad8-8097-472d-90fd-901067e6f1aa}, !- Space Name + Surface, !- Outside Boundary Condition + {7c639df6-3519-4902-a764-cd4cd18ef1c9}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ddc9eebd-1b70-4a8e-808e-4af8d4255596}, !- Handle + Surface 12, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {97c57ad8-8097-472d-90fd-901067e6f1aa}, !- Space Name + Surface, !- Outside Boundary Condition + {d2bc3008-e008-43b0-9cd8-a8fb4fd26d14}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {0e16a0a5-62bd-4268-b2a0-bac7e16de732}, !- Handle + Space 103, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 19.3189561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 0, !- Z Origin {m} + {50bc3895-09f6-41e5-ab30-91d7f09f1a2f}, !- Building Story Name + {a0ea8b05-8dde-4a97-b3ec-d04f6a0e3756}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {c72ba71c-58ff-4bae-9fbc-2e0a6ed9a3a7}, !- Handle + Surface 13, !- Name + Floor, !- Surface Type + , !- Construction Name + {0e16a0a5-62bd-4268-b2a0-bac7e16de732}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5686c2eb-b2ea-4f6d-87f1-210525ada2cf}, !- Handle + Surface 14, !- Name + Wall, !- Surface Type + , !- Construction Name + {0e16a0a5-62bd-4268-b2a0-bac7e16de732}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {7c639df6-3519-4902-a764-cd4cd18ef1c9}, !- Handle + Surface 15, !- Name + Wall, !- Surface Type + , !- Construction Name + {0e16a0a5-62bd-4268-b2a0-bac7e16de732}, !- Space Name + Surface, !- Outside Boundary Condition + {0b5c3e45-e975-477b-b4e2-a4ebe8d6f0ea}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {da802f21-79d1-4a99-b548-dffcbeb2ca4d}, !- Handle + Surface 16, !- Name + Wall, !- Surface Type + , !- Construction Name + {0e16a0a5-62bd-4268-b2a0-bac7e16de732}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4f0d9952-7e13-465e-806f-464aa79ef0a6}, !- Handle + Surface 17, !- Name + Wall, !- Surface Type + , !- Construction Name + {0e16a0a5-62bd-4268-b2a0-bac7e16de732}, !- Space Name + Surface, !- Outside Boundary Condition + {c97b9221-91c3-4942-9590-f38b3e1f8b74}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ec09aba4-7298-425d-a4ef-1ea1cae169c0}, !- Handle + Surface 18, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {0e16a0a5-62bd-4268-b2a0-bac7e16de732}, !- Space Name + Surface, !- Outside Boundary Condition + {0efecb8e-67f8-4495-9285-c7b57b5c7920}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {b9e875cb-3bf3-4a68-8dc9-9c72e0c5d6d3}, !- Handle + Space 104, !- Name + {e04862be-4937-4a7f-a795-7731f14e8f20}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 25.4149561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 0, !- Z Origin {m} + {50bc3895-09f6-41e5-ab30-91d7f09f1a2f}, !- Building Story Name + {403b7ca0-99b3-4839-9d8d-865f3b02bc68}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {2a6d529b-87c0-4aa9-b754-69aa35111644}, !- Handle + Surface 19, !- Name + Floor, !- Surface Type + , !- Construction Name + {b9e875cb-3bf3-4a68-8dc9-9c72e0c5d6d3}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {115a0202-bd48-44af-9cb2-261beb6d321c}, !- Handle + Surface 20, !- Name + Wall, !- Surface Type + , !- Construction Name + {b9e875cb-3bf3-4a68-8dc9-9c72e0c5d6d3}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {c97b9221-91c3-4942-9590-f38b3e1f8b74}, !- Handle + Surface 21, !- Name + Wall, !- Surface Type + , !- Construction Name + {b9e875cb-3bf3-4a68-8dc9-9c72e0c5d6d3}, !- Space Name + Surface, !- Outside Boundary Condition + {4f0d9952-7e13-465e-806f-464aa79ef0a6}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d6ba376c-94f6-4dd5-8cca-a0a34de148d5}, !- Handle + Surface 22, !- Name + Wall, !- Surface Type + , !- Construction Name + {b9e875cb-3bf3-4a68-8dc9-9c72e0c5d6d3}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {345783ad-ab36-48af-90c0-f05eef8f877b}, !- Handle + Surface 23, !- Name + Wall, !- Surface Type + , !- Construction Name + {b9e875cb-3bf3-4a68-8dc9-9c72e0c5d6d3}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5dd7b5f4-c864-4a90-b6d4-e2a9b85826b7}, !- Handle + Surface 24, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {b9e875cb-3bf3-4a68-8dc9-9c72e0c5d6d3}, !- Space Name + Surface, !- Outside Boundary Condition + {0d19d99a-a78f-4652-bb6e-340bd2839367}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:BuildingStory, + {d03386f8-b086-4231-9af4-85477b337d6c}, !- Handle + Building Story 2, !- Name + 3.048, !- Nominal Z Coordinate {m} + 3.048, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {1923cc1e-b2a3-4b2d-b1b2-da11a250ac77}; !- Group Rendering Name + +OS:Space, + {af68cba8-f732-42f2-9c35-a7ac42db6da0}, !- Handle + Space 201, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 7.12695618379875, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 3.048, !- Z Origin {m} + {d03386f8-b086-4231-9af4-85477b337d6c}, !- Building Story Name + {2c85a7cb-953e-4974-985c-84ac595bf928}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {88cf67c9-3525-467c-94d5-10c9aa3b90bf}, !- Handle + Surface 25, !- Name + Floor, !- Surface Type + , !- Construction Name + {af68cba8-f732-42f2-9c35-a7ac42db6da0}, !- Space Name + Surface, !- Outside Boundary Condition + {121e534c-d69d-4ce0-a5c5-da4e13d71eb1}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {855e5dea-aca5-4c1c-aaba-746697e51f7c}, !- Handle + Surface 26, !- Name + Wall, !- Surface Type + , !- Construction Name + {af68cba8-f732-42f2-9c35-a7ac42db6da0}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {38bedd91-b942-428b-bd37-ceec5a9419d5}, !- Handle + Surface 27, !- Name + Wall, !- Surface Type + , !- Construction Name + {af68cba8-f732-42f2-9c35-a7ac42db6da0}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8b2d5739-1bf6-4d0b-8cfa-415de185cd0c}, !- Handle + Surface 28, !- Name + Wall, !- Surface Type + , !- Construction Name + {af68cba8-f732-42f2-9c35-a7ac42db6da0}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3ef4e4a1-7399-42e1-8ef2-6fb0dd03469d}, !- Handle + Surface 29, !- Name + Wall, !- Surface Type + , !- Construction Name + {af68cba8-f732-42f2-9c35-a7ac42db6da0}, !- Space Name + Surface, !- Outside Boundary Condition + {39ea00cd-46e6-4161-9243-a06c61ea930f}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2464bd32-a785-427e-84bd-5654d7b96721}, !- Handle + Surface 30, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {af68cba8-f732-42f2-9c35-a7ac42db6da0}, !- Space Name + Surface, !- Outside Boundary Condition + {9e14fd0a-6859-4eef-9bd5-aa2471f282dc}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {a4e45805-188c-4782-b8f5-0f41aaef663a}, !- Handle + Space 202, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 13.2229561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 3.048, !- Z Origin {m} + {d03386f8-b086-4231-9af4-85477b337d6c}, !- Building Story Name + {2c85a7cb-953e-4974-985c-84ac595bf928}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {d2bc3008-e008-43b0-9cd8-a8fb4fd26d14}, !- Handle + Surface 31, !- Name + Floor, !- Surface Type + , !- Construction Name + {a4e45805-188c-4782-b8f5-0f41aaef663a}, !- Space Name + Surface, !- Outside Boundary Condition + {ddc9eebd-1b70-4a8e-808e-4af8d4255596}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7441e58c-bfd3-41cc-9cbe-daff40118520}, !- Handle + Surface 32, !- Name + Wall, !- Surface Type + , !- Construction Name + {a4e45805-188c-4782-b8f5-0f41aaef663a}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {39ea00cd-46e6-4161-9243-a06c61ea930f}, !- Handle + Surface 33, !- Name + Wall, !- Surface Type + , !- Construction Name + {a4e45805-188c-4782-b8f5-0f41aaef663a}, !- Space Name + Surface, !- Outside Boundary Condition + {3ef4e4a1-7399-42e1-8ef2-6fb0dd03469d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b772905e-2c20-4396-be5d-e4343293b0e0}, !- Handle + Surface 34, !- Name + Wall, !- Surface Type + , !- Construction Name + {a4e45805-188c-4782-b8f5-0f41aaef663a}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3d567cf9-317b-4936-8d91-75accac3a016}, !- Handle + Surface 35, !- Name + Wall, !- Surface Type + , !- Construction Name + {a4e45805-188c-4782-b8f5-0f41aaef663a}, !- Space Name + Surface, !- Outside Boundary Condition + {4f458b97-556f-4864-bbcb-b346ed6572fd}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fbdd1d75-a782-4690-ad0c-c72f38a8ddd3}, !- Handle + Surface 36, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {a4e45805-188c-4782-b8f5-0f41aaef663a}, !- Space Name + Surface, !- Outside Boundary Condition + {d8eadc93-2112-4b8b-a0cb-70009d8e1db1}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {aef4681f-82f0-4bce-894f-e3179563f3bc}, !- Handle + Space 203, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 19.3189561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 3.048, !- Z Origin {m} + {d03386f8-b086-4231-9af4-85477b337d6c}, !- Building Story Name + {2c85a7cb-953e-4974-985c-84ac595bf928}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {0efecb8e-67f8-4495-9285-c7b57b5c7920}, !- Handle + Surface 37, !- Name + Floor, !- Surface Type + , !- Construction Name + {aef4681f-82f0-4bce-894f-e3179563f3bc}, !- Space Name + Surface, !- Outside Boundary Condition + {ec09aba4-7298-425d-a4ef-1ea1cae169c0}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {66004abe-0dab-431c-a6ce-1f96ebf0de68}, !- Handle + Surface 38, !- Name + Wall, !- Surface Type + , !- Construction Name + {aef4681f-82f0-4bce-894f-e3179563f3bc}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4f458b97-556f-4864-bbcb-b346ed6572fd}, !- Handle + Surface 39, !- Name + Wall, !- Surface Type + , !- Construction Name + {aef4681f-82f0-4bce-894f-e3179563f3bc}, !- Space Name + Surface, !- Outside Boundary Condition + {3d567cf9-317b-4936-8d91-75accac3a016}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fe770225-a065-4da2-b913-374477d7dc4b}, !- Handle + Surface 40, !- Name + Wall, !- Surface Type + , !- Construction Name + {aef4681f-82f0-4bce-894f-e3179563f3bc}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d9630035-108a-4fe6-891d-8fc712e834a9}, !- Handle + Surface 41, !- Name + Wall, !- Surface Type + , !- Construction Name + {aef4681f-82f0-4bce-894f-e3179563f3bc}, !- Space Name + Surface, !- Outside Boundary Condition + {d03c1845-51db-4a4c-8ee2-0a29efadce45}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1feceac7-d9b2-444f-9af5-236208d90ad9}, !- Handle + Surface 42, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {aef4681f-82f0-4bce-894f-e3179563f3bc}, !- Space Name + Surface, !- Outside Boundary Condition + {21902788-9243-4306-8533-7e32dbdd9756}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {cc29ffe3-b0f4-4419-8bdf-c3512dea498f}, !- Handle + Space 204, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 25.4149561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 3.048, !- Z Origin {m} + {d03386f8-b086-4231-9af4-85477b337d6c}, !- Building Story Name + {2c85a7cb-953e-4974-985c-84ac595bf928}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {0d19d99a-a78f-4652-bb6e-340bd2839367}, !- Handle + Surface 43, !- Name + Floor, !- Surface Type + , !- Construction Name + {cc29ffe3-b0f4-4419-8bdf-c3512dea498f}, !- Space Name + Surface, !- Outside Boundary Condition + {5dd7b5f4-c864-4a90-b6d4-e2a9b85826b7}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {25d16ac2-e6b3-44cd-ab25-9151cf85ae00}, !- Handle + Surface 44, !- Name + Wall, !- Surface Type + , !- Construction Name + {cc29ffe3-b0f4-4419-8bdf-c3512dea498f}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d03c1845-51db-4a4c-8ee2-0a29efadce45}, !- Handle + Surface 45, !- Name + Wall, !- Surface Type + , !- Construction Name + {cc29ffe3-b0f4-4419-8bdf-c3512dea498f}, !- Space Name + Surface, !- Outside Boundary Condition + {d9630035-108a-4fe6-891d-8fc712e834a9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e52504e8-2ab4-4002-a7f4-40e46a59b475}, !- Handle + Surface 46, !- Name + Wall, !- Surface Type + , !- Construction Name + {cc29ffe3-b0f4-4419-8bdf-c3512dea498f}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0da79dc8-ef2e-47ab-94cd-6263810dc2b0}, !- Handle + Surface 47, !- Name + Wall, !- Surface Type + , !- Construction Name + {cc29ffe3-b0f4-4419-8bdf-c3512dea498f}, !- 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, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ba506b8a-8204-4278-adc1-c41f9f6b0c71}, !- Handle + Surface 48, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {cc29ffe3-b0f4-4419-8bdf-c3512dea498f}, !- Space Name + Surface, !- Outside Boundary Condition + {7d2eb8c2-40f9-4dd6-9751-64ee7c229721}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:BuildingStory, + {0a6beaac-2a7f-4f0d-9e43-9ff677bd4dff}, !- Handle + Building Story 3, !- Name + 6.096, !- Nominal Z Coordinate {m} + 3.048, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {779895f9-d830-4d6e-b6cd-290106fcd477}; !- Group Rendering Name + +OS:Space, + {5414eb56-fc6c-4300-a22c-ca8637fd3776}, !- Handle + Space 301, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 7.12695618379875, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 4.2672, !- Z Origin {m} + {0a6beaac-2a7f-4f0d-9e43-9ff677bd4dff}, !- Building Story Name + {488a30b0-3f5c-43fa-a2d4-15fb73ce765c}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {9e14fd0a-6859-4eef-9bd5-aa2471f282dc}, !- Handle + Surface 49, !- Name + Floor, !- Surface Type + , !- Construction Name + {5414eb56-fc6c-4300-a22c-ca8637fd3776}, !- Space Name + Surface, !- Outside Boundary Condition + {2464bd32-a785-427e-84bd-5654d7b96721}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3804a4f5-82ab-4df6-a9ac-b00b4ddc2736}, !- Handle + Surface 50, !- Name + Wall, !- Surface Type + , !- Construction Name + {5414eb56-fc6c-4300-a22c-ca8637fd3776}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {5338c319-3e38-4d9b-9ec4-cf780411982d}, !- Handle + Surface 51, !- Name + Wall, !- Surface Type + , !- Construction Name + {5414eb56-fc6c-4300-a22c-ca8637fd3776}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2eabca2a-a710-46ab-bd34-329bcce0ec16}, !- Handle + Surface 52, !- Name + Wall, !- Surface Type + , !- Construction Name + {5414eb56-fc6c-4300-a22c-ca8637fd3776}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {01f0c659-b6a2-4081-b738-59f2d4a73b40}, !- Handle + Surface 53, !- Name + Wall, !- Surface Type + , !- Construction Name + {5414eb56-fc6c-4300-a22c-ca8637fd3776}, !- Space Name + Surface, !- Outside Boundary Condition + {21947a90-83ea-41ba-afba-4680da115b2d}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b0e56aec-53a0-460c-a78a-f344a252245e}, !- Handle + Surface 54, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {5414eb56-fc6c-4300-a22c-ca8637fd3776}, !- Space Name + Surface, !- Outside Boundary Condition + {d151327c-b185-40f5-872a-719db402d646}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {9cf3ea8e-7fd8-411f-a0a9-02012e76ab22}, !- Handle + Space 302, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 13.2229561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 4.2672, !- Z Origin {m} + {0a6beaac-2a7f-4f0d-9e43-9ff677bd4dff}, !- Building Story Name + {64154878-3721-4777-8a9f-6264c3cc4ba2}; !- Thermal Zone Name + +OS:Surface, + {d8eadc93-2112-4b8b-a0cb-70009d8e1db1}, !- Handle + Surface 55, !- Name + Floor, !- Surface Type + , !- Construction Name + {9cf3ea8e-7fd8-411f-a0a9-02012e76ab22}, !- Space Name + Surface, !- Outside Boundary Condition + {fbdd1d75-a782-4690-ad0c-c72f38a8ddd3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fac36644-b4d2-4ab2-bafd-bcaec2462b92}, !- Handle + Surface 56, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cf3ea8e-7fd8-411f-a0a9-02012e76ab22}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {21947a90-83ea-41ba-afba-4680da115b2d}, !- Handle + Surface 57, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cf3ea8e-7fd8-411f-a0a9-02012e76ab22}, !- Space Name + Surface, !- Outside Boundary Condition + {01f0c659-b6a2-4081-b738-59f2d4a73b40}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4b926865-599f-4da8-b647-a9f637764343}, !- Handle + Surface 58, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cf3ea8e-7fd8-411f-a0a9-02012e76ab22}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cdb2c1be-8519-4045-ae55-b0225479d2e7}, !- Handle + Surface 59, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cf3ea8e-7fd8-411f-a0a9-02012e76ab22}, !- Space Name + Surface, !- Outside Boundary Condition + {8d044e49-604a-48d2-820c-1f74676d3613}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ac3c88ee-d5ed-4f98-9276-c759b11a99fa}, !- Handle + Surface 60, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {9cf3ea8e-7fd8-411f-a0a9-02012e76ab22}, !- Space Name + Surface, !- Outside Boundary Condition + {0fd4ff80-6ffc-45ab-910c-04b7383da3a7}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {b0ddc7c7-fc99-434c-8fe2-e7068356970c}, !- Handle + Space 303, !- Name + {09d69842-de39-414d-b3e6-ca9da2c8a145}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 19.3189561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 4.2672, !- Z Origin {m} + {0a6beaac-2a7f-4f0d-9e43-9ff677bd4dff}, !- Building Story Name + {3328af8e-f3e2-4c86-b0e8-dc9e1d7ff66b}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {21902788-9243-4306-8533-7e32dbdd9756}, !- Handle + Surface 61, !- Name + Floor, !- Surface Type + , !- Construction Name + {b0ddc7c7-fc99-434c-8fe2-e7068356970c}, !- Space Name + Surface, !- Outside Boundary Condition + {1feceac7-d9b2-444f-9af5-236208d90ad9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {76cbe6f8-985a-4f3f-a96c-e649b4e89616}, !- Handle + Surface 62, !- Name + Wall, !- Surface Type + , !- Construction Name + {b0ddc7c7-fc99-434c-8fe2-e7068356970c}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {8d044e49-604a-48d2-820c-1f74676d3613}, !- Handle + Surface 63, !- Name + Wall, !- Surface Type + , !- Construction Name + {b0ddc7c7-fc99-434c-8fe2-e7068356970c}, !- Space Name + Surface, !- Outside Boundary Condition + {cdb2c1be-8519-4045-ae55-b0225479d2e7}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {68da73aa-0fec-42a4-a60f-c80657ef869d}, !- Handle + Surface 64, !- Name + Wall, !- Surface Type + , !- Construction Name + {b0ddc7c7-fc99-434c-8fe2-e7068356970c}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {563e67f5-b98f-4f11-9623-4b1d7eb03d1b}, !- Handle + Surface 65, !- Name + Wall, !- Surface Type + , !- Construction Name + {b0ddc7c7-fc99-434c-8fe2-e7068356970c}, !- Space Name + Surface, !- Outside Boundary Condition + {8450ba57-e660-4189-bcaf-8291a6589f8d}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {debc1587-974c-41b2-9c27-f031d8ce039a}, !- Handle + Surface 66, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {b0ddc7c7-fc99-434c-8fe2-e7068356970c}, !- Space Name + Surface, !- Outside Boundary Condition + {1776d60f-aef1-43b6-985c-b8f33b879436}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {0f62dc71-c6ba-4143-8e07-62e7f995fc7d}, !- Handle + Space 304, !- Name + {bb037295-1692-4a23-a0e4-ab2cba7fa69c}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 25.4149561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 4.2672, !- Z Origin {m} + {0a6beaac-2a7f-4f0d-9e43-9ff677bd4dff}, !- Building Story Name + {b1a43f6a-2510-4f0f-b7bc-8fa33483e05f}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {7d2eb8c2-40f9-4dd6-9751-64ee7c229721}, !- Handle + Surface 67, !- Name + Floor, !- Surface Type + , !- Construction Name + {0f62dc71-c6ba-4143-8e07-62e7f995fc7d}, !- Space Name + Surface, !- Outside Boundary Condition + {ba506b8a-8204-4278-adc1-c41f9f6b0c71}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7fb5b8cf-d63f-44ae-be45-c14c4c88c258}, !- Handle + Surface 68, !- Name + Wall, !- Surface Type + , !- Construction Name + {0f62dc71-c6ba-4143-8e07-62e7f995fc7d}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 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} + +OS:Surface, + {8450ba57-e660-4189-bcaf-8291a6589f8d}, !- Handle + Surface 69, !- Name + Wall, !- Surface Type + , !- Construction Name + {0f62dc71-c6ba-4143-8e07-62e7f995fc7d}, !- Space Name + Surface, !- Outside Boundary Condition + {563e67f5-b98f-4f11-9623-4b1d7eb03d1b}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f647aeb4-bef7-4b87-a28e-f7c3535b65dd}, !- Handle + Surface 70, !- Name + Wall, !- Surface Type + , !- Construction Name + {0f62dc71-c6ba-4143-8e07-62e7f995fc7d}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {573e9f67-5617-4b19-803d-1c28a2e2c8a3}, !- Handle + Surface 71, !- Name + Wall, !- Surface Type + , !- Construction Name + {0f62dc71-c6ba-4143-8e07-62e7f995fc7d}, !- 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, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d6377ea0-84b3-43ed-918d-21c81066f473}, !- Handle + Surface 72, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {0f62dc71-c6ba-4143-8e07-62e7f995fc7d}, !- Space Name + Surface, !- Outside Boundary Condition + {0014eb3f-1a95-4dc6-911e-80a878b4cacd}, !- 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, 6.096, 3.048, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 3.048, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:BuildingStory, + {e7c7222c-3d5b-40be-909e-a21ef8bb7639}, !- Handle + Building Story 4, !- Name + 9.144, !- Nominal Z Coordinate {m} + 3.048, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {57f47034-25a8-4253-aab1-6933c964366f}; !- Group Rendering Name + +OS:Space, + {3c91efd3-3ba0-4b2b-b396-a3e72ff10e81}, !- Handle + Space 401, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 7.12695618379875, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 7.3152, !- Z Origin {m} + {e7c7222c-3d5b-40be-909e-a21ef8bb7639}, !- Building Story Name + {7251428b-f646-45b0-a022-b321d4641574}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {d151327c-b185-40f5-872a-719db402d646}, !- Handle + Surface 73, !- Name + Floor, !- Surface Type + , !- Construction Name + {3c91efd3-3ba0-4b2b-b396-a3e72ff10e81}, !- Space Name + Surface, !- Outside Boundary Condition + {b0e56aec-53a0-460c-a78a-f344a252245e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7abb8811-b551-4b11-9a61-8b0b73c79bfa}, !- Handle + Surface 74, !- Name + Wall, !- Surface Type + , !- Construction Name + {3c91efd3-3ba0-4b2b-b396-a3e72ff10e81}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cf12b8bc-9dc9-49df-a6fe-52e614c2599c}, !- Handle + Surface 75, !- Name + Wall, !- Surface Type + , !- Construction Name + {3c91efd3-3ba0-4b2b-b396-a3e72ff10e81}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b16cfe6f-f7d9-4a77-bb9c-2dc478937196}, !- Handle + Surface 76, !- Name + Wall, !- Surface Type + , !- Construction Name + {3c91efd3-3ba0-4b2b-b396-a3e72ff10e81}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a5294a5e-24fc-4bec-836d-da601cfc5691}, !- Handle + Surface 77, !- Name + Wall, !- Surface Type + , !- Construction Name + {3c91efd3-3ba0-4b2b-b396-a3e72ff10e81}, !- Space Name + Surface, !- Outside Boundary Condition + {bb8e39ee-0e73-4fea-bb4f-63e2061f2e90}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d6f71384-bfc4-4906-86cc-8eb79dba0432}, !- Handle + Surface 78, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {3c91efd3-3ba0-4b2b-b396-a3e72ff10e81}, !- 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, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {560775ef-2d9b-45b9-8808-11b69e70766d}, !- Handle + Space 402, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 13.2229561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 7.3152, !- Z Origin {m} + {e7c7222c-3d5b-40be-909e-a21ef8bb7639}, !- Building Story Name + {7251428b-f646-45b0-a022-b321d4641574}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {0fd4ff80-6ffc-45ab-910c-04b7383da3a7}, !- Handle + Surface 79, !- Name + Floor, !- Surface Type + , !- Construction Name + {560775ef-2d9b-45b9-8808-11b69e70766d}, !- Space Name + Surface, !- Outside Boundary Condition + {ac3c88ee-d5ed-4f98-9276-c759b11a99fa}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a699213d-5140-46b5-b2e3-dba85080c98f}, !- Handle + Surface 80, !- Name + Wall, !- Surface Type + , !- Construction Name + {560775ef-2d9b-45b9-8808-11b69e70766d}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bb8e39ee-0e73-4fea-bb4f-63e2061f2e90}, !- Handle + Surface 81, !- Name + Wall, !- Surface Type + , !- Construction Name + {560775ef-2d9b-45b9-8808-11b69e70766d}, !- Space Name + Surface, !- Outside Boundary Condition + {a5294a5e-24fc-4bec-836d-da601cfc5691}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1d7fa4ce-1842-460a-9821-33359a4d67bb}, !- Handle + Surface 82, !- Name + Wall, !- Surface Type + , !- Construction Name + {560775ef-2d9b-45b9-8808-11b69e70766d}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8e39a43c-7d88-4506-8bb4-f8ad56ab7388}, !- Handle + Surface 83, !- Name + Wall, !- Surface Type + , !- Construction Name + {560775ef-2d9b-45b9-8808-11b69e70766d}, !- Space Name + Surface, !- Outside Boundary Condition + {bf6b93b2-a89f-4fcd-b169-9aaab28400a4}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4796d3a0-22b1-46e8-8bb4-16b4e50ed09e}, !- Handle + Surface 84, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {560775ef-2d9b-45b9-8808-11b69e70766d}, !- 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, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {9f6a68fd-cfa1-4a13-9b84-01aea8338292}, !- Handle + Space 403, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 19.3189561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 7.3152, !- Z Origin {m} + {e7c7222c-3d5b-40be-909e-a21ef8bb7639}, !- Building Story Name + {3a3e72dc-d8ab-461f-abd5-79f454926204}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {1776d60f-aef1-43b6-985c-b8f33b879436}, !- Handle + Surface 85, !- Name + Floor, !- Surface Type + , !- Construction Name + {9f6a68fd-cfa1-4a13-9b84-01aea8338292}, !- Space Name + Surface, !- Outside Boundary Condition + {debc1587-974c-41b2-9c27-f031d8ce039a}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fb18788c-0b20-4540-9a5e-445b2bdca295}, !- Handle + Surface 86, !- Name + Wall, !- Surface Type + , !- Construction Name + {9f6a68fd-cfa1-4a13-9b84-01aea8338292}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bf6b93b2-a89f-4fcd-b169-9aaab28400a4}, !- Handle + Surface 87, !- Name + Wall, !- Surface Type + , !- Construction Name + {9f6a68fd-cfa1-4a13-9b84-01aea8338292}, !- Space Name + Surface, !- Outside Boundary Condition + {8e39a43c-7d88-4506-8bb4-f8ad56ab7388}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3604e587-8c90-4eb0-9494-ef1115151a55}, !- Handle + Surface 88, !- Name + Wall, !- Surface Type + , !- Construction Name + {9f6a68fd-cfa1-4a13-9b84-01aea8338292}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {920b68cb-ab51-42e7-9fc6-8b5907b2242d}, !- Handle + Surface 89, !- Name + Wall, !- Surface Type + , !- Construction Name + {9f6a68fd-cfa1-4a13-9b84-01aea8338292}, !- Space Name + Surface, !- Outside Boundary Condition + {2aac11c8-eb55-4179-9d9c-3e0a9dacb098}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c29f9d20-971d-4d38-b2c5-8d5c03ef6a89}, !- Handle + Surface 90, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {9f6a68fd-cfa1-4a13-9b84-01aea8338292}, !- 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, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {4212ec67-f2bc-4a56-8c3f-9c155ed47822}, !- Handle + Space 404, !- Name + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 25.4149561837987, !- X Origin {m} + 0.765480835726988, !- Y Origin {m} + 7.3152, !- Z Origin {m} + {e7c7222c-3d5b-40be-909e-a21ef8bb7639}, !- Building Story Name + {3a3e72dc-d8ab-461f-abd5-79f454926204}, !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {0014eb3f-1a95-4dc6-911e-80a878b4cacd}, !- Handle + Surface 91, !- Name + Floor, !- Surface Type + , !- Construction Name + {4212ec67-f2bc-4a56-8c3f-9c155ed47822}, !- Space Name + Surface, !- Outside Boundary Condition + {d6377ea0-84b3-43ed-918d-21c81066f473}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 0, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6fb6b20a-281a-485d-8cd6-a29293bd0046}, !- Handle + Surface 92, !- Name + Wall, !- Surface Type + , !- Construction Name + {4212ec67-f2bc-4a56-8c3f-9c155ed47822}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 0, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2aac11c8-eb55-4179-9d9c-3e0a9dacb098}, !- Handle + Surface 93, !- Name + Wall, !- Surface Type + , !- Construction Name + {4212ec67-f2bc-4a56-8c3f-9c155ed47822}, !- Space Name + Surface, !- Outside Boundary Condition + {920b68cb-ab51-42e7-9fc6-8b5907b2242d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 0, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {98d63aa6-3667-46d2-9caf-6ede1752af74}, !- Handle + Surface 94, !- Name + Wall, !- Surface Type + , !- Construction Name + {4212ec67-f2bc-4a56-8c3f-9c155ed47822}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 6.096, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 0, !- X,Y,Z Vertex 3 {m} + -6.096, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d09bd872-68c7-4906-bcff-d308410a7e59}, !- Handle + Surface 95, !- Name + Wall, !- Surface Type + , !- Construction Name + {4212ec67-f2bc-4a56-8c3f-9c155ed47822}, !- 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, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 6.096, 0, !- X,Y,Z Vertex 3 {m} + 0, 6.096, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {428e079d-36ad-4f7f-a65d-737a9c09feb3}, !- Handle + Surface 96, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {4212ec67-f2bc-4a56-8c3f-9c155ed47822}, !- 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, 1.2192, !- X,Y,Z Vertex 1 {m} + 0, 6.096, 1.2192, !- X,Y,Z Vertex 2 {m} + -6.096, 6.096, 1.2192, !- X,Y,Z Vertex 3 {m} + -6.096, 0, 1.2192; !- X,Y,Z Vertex 4 {m} + +OS:Rendering:Color, + {902cc960-2954-4671-a685-7f2c65da7370}, !- Handle + Rendering Color 1, !- Name + 186, !- Rendering Red Value + 85, !- Rendering Green Value + 211; !- Rendering Blue Value + +OS:Rendering:Color, + {1923cc1e-b2a3-4b2d-b1b2-da11a250ac77}, !- Handle + Rendering Color 2, !- Name + 244, !- Rendering Red Value + 164, !- Rendering Green Value + 96; !- Rendering Blue Value + +OS:Rendering:Color, + {779895f9-d830-4d6e-b6cd-290106fcd477}, !- Handle + Rendering Color 3, !- Name + 0, !- Rendering Red Value + 139, !- Rendering Green Value + 139; !- Rendering Blue Value + +OS:Rendering:Color, + {57f47034-25a8-4253-aab1-6933c964366f}, !- Handle + Rendering Color 4, !- Name + 209, !- Rendering Red Value + 75, !- Rendering Green Value + 100, !- Rendering Blue Value + 255; !- Rendering Alpha Value + +OS:SubSurface, + {a7450476-7d30-428d-b033-c7abec8da40e}, !- Handle + Sub Surface 1, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {115a0202-bd48-44af-9cb2-261beb6d321c}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -6.0706, 0, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -6.0706, 0, 0.76, !- X,Y,Z Vertex 2 {m} + -0.0253999999999994, 0, 0.76, !- X,Y,Z Vertex 3 {m} + -0.0253999999999994, 0, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {2f019c54-5b06-4ede-b27a-6893096c3585}, !- Handle + Sub Surface 2, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {27c2ff57-9a1d-4d73-ae7f-1a476ba2e73d}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -0.0254, 6.096, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -0.0254, 6.096, 0.76, !- X,Y,Z Vertex 2 {m} + -6.0706, 6.096, 0.76, !- X,Y,Z Vertex 3 {m} + -6.0706, 6.096, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {99d7c286-7bf6-4c04-9c16-898d8b30339f}, !- Handle + Sub Surface 3, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {345783ad-ab36-48af-90c0-f05eef8f877b}, !- 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.98944537815126, !- X,Y,Z Vertex 1 {m} + 0, 0.0254, 0.76, !- X,Y,Z Vertex 2 {m} + 0, 6.0706, 0.76, !- X,Y,Z Vertex 3 {m} + 0, 6.0706, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {df0ba998-0d2f-4c49-844e-f2f6debd507f}, !- Handle + Sub Surface 4, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {5686c2eb-b2ea-4f6d-87f1-210525ada2cf}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -6.0706, 0, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -6.0706, 0, 0.76, !- X,Y,Z Vertex 2 {m} + -0.0253999999999994, 0, 0.76, !- X,Y,Z Vertex 3 {m} + -0.0253999999999994, 0, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {f6f17600-5b8a-4eef-a770-80a46e01503b}, !- Handle + Sub Surface 5, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {7510a12f-79c0-4488-ba36-4923c219d8ef}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -6.0706, 0, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -6.0706, 0, 0.76, !- X,Y,Z Vertex 2 {m} + -0.0253999999999994, 0, 0.76, !- X,Y,Z Vertex 3 {m} + -0.0253999999999994, 0, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {8eb4ce64-b71b-4faa-99a9-1ab849b6df82}, !- Handle + Sub Surface 6, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {9e02d692-8c93-48f9-9024-71537d9814bd}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -0.0254, 6.096, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -0.0254, 6.096, 0.76, !- X,Y,Z Vertex 2 {m} + -6.0706, 6.096, 0.76, !- X,Y,Z Vertex 3 {m} + -6.0706, 6.096, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {a2668fde-5748-4017-b0b8-4f977e5697e6}, !- Handle + Sub Surface 7, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {b5819705-c4bc-43fc-b6be-9614ccd3759c}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -6.0706, 0, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -6.0706, 0, 0.76, !- X,Y,Z Vertex 2 {m} + -0.0253999999999994, 0, 0.76, !- X,Y,Z Vertex 3 {m} + -0.0253999999999994, 0, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {b23e0b23-8674-4277-bb5e-58cee095bc31}, !- Handle + Sub Surface 8, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {d6ba376c-94f6-4dd5-8cca-a0a34de148d5}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -0.0254, 6.096, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -0.0254, 6.096, 0.76, !- X,Y,Z Vertex 2 {m} + -6.0706, 6.096, 0.76, !- X,Y,Z Vertex 3 {m} + -6.0706, 6.096, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {933119a4-e7a2-40e1-b653-09bc8f81d9f7}, !- Handle + Sub Surface 9, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {da802f21-79d1-4a99-b548-dffcbeb2ca4d}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -0.0254, 6.096, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -0.0254, 6.096, 0.76, !- X,Y,Z Vertex 2 {m} + -6.0706, 6.096, 0.76, !- X,Y,Z Vertex 3 {m} + -6.0706, 6.096, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {1b64fde4-07e5-4f08-bac2-9546bc22bb29}, !- Handle + Sub Surface 10, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {e588bf81-dd12-4e06-878a-93b4fb77623f}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -6.096, 6.0706, 1.98944537815126, !- X,Y,Z Vertex 1 {m} + -6.096, 6.0706, 0.76, !- X,Y,Z Vertex 2 {m} + -6.096, 0.0253999999999994, 0.76, !- X,Y,Z Vertex 3 {m} + -6.096, 0.0253999999999994, 1.98944537815126; !- X,Y,Z Vertex 4 {m} + +OS:SpaceType, + {e26bc49f-278d-476b-9ede-33cbf0246402}, !- Handle + Plenum, !- Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + {69d9464d-c9e7-4da8-981d-f947b86c7e21}, !- Group Rendering Name + , !- Design Specification Outdoor Air Object Name + SecondarySchool, !- Standards Building Type + CeilingReturnAirPlenum; !- Standards Space Type + +OS:Rendering:Color, + {69d9464d-c9e7-4da8-981d-f947b86c7e21}, !- Handle + Rendering Color 5, !- Name + 196, !- Rendering Red Value + 90, !- Rendering Green Value + 166, !- Rendering Blue Value + 255; !- Rendering Alpha Value + +OS:ThermalZone, + {3a3e72dc-d8ab-461f-abd5-79f454926204}, !- Handle + Thermal Zone: Space 403 - Plus, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {7e951556-7380-49e8-bacc-b62f243d1ce5}, !- Zone Air Inlet Port List + {83ae806e-7abd-4d3f-a334-27fa9f54011a}, !- Zone Air Exhaust Port List + {28c8f56a-e3b7-4441-8774-07ea195eefdd}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {2c915493-70f5-4ed0-bafe-7b0101c20f1a}, !- Group Rendering Name + , !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {aec54f15-0bae-41b6-8008-92593e924c43}, !- Handle + Node 1, !- Name + {28c8f56a-e3b7-4441-8774-07ea195eefdd}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {28c8f56a-e3b7-4441-8774-07ea195eefdd}, !- Handle + Connection 1, !- Name + {3a3e72dc-d8ab-461f-abd5-79f454926204}, !- Source Object + 11, !- Outlet Port + {aec54f15-0bae-41b6-8008-92593e924c43}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {7e951556-7380-49e8-bacc-b62f243d1ce5}, !- Handle + Port List 1, !- Name + {3a3e72dc-d8ab-461f-abd5-79f454926204}; !- HVAC Component + +OS:PortList, + {83ae806e-7abd-4d3f-a334-27fa9f54011a}, !- Handle + Port List 2, !- Name + {3a3e72dc-d8ab-461f-abd5-79f454926204}; !- HVAC Component + +OS:Sizing:Zone, + {cca93e18-80cb-4025-a255-177e5065bbf4}, !- Handle + {3a3e72dc-d8ab-461f-abd5-79f454926204}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {c8f9504d-a998-4e8d-b70b-dea4213e428c}, !- Handle + Zone HVAC Equipment List 1, !- Name + {3a3e72dc-d8ab-461f-abd5-79f454926204}; !- Thermal Zone + +OS:Rendering:Color, + {2c915493-70f5-4ed0-bafe-7b0101c20f1a}, !- Handle + Rendering Color 6, !- Name + 218, !- Rendering Red Value + 112, !- Rendering Green Value + 214; !- Rendering Blue Value + +OS:ThermalZone, + {7251428b-f646-45b0-a022-b321d4641574}, !- Handle + Thermal Zone: Space 401 - Plus, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {cf67e040-4227-47d7-b475-c1cd420904e2}, !- Zone Air Inlet Port List + {16f9f8c1-9ce7-4aec-83b9-7439500432be}, !- Zone Air Exhaust Port List + {15c88cf7-cc7a-4779-81a5-8e4c71427fab}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {da49422e-092b-416a-8509-39a0cdb1b61a}, !- Group Rendering Name + , !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {a602d2fd-d759-47ff-813d-8993bfce0d37}, !- Handle + Node 2, !- Name + {15c88cf7-cc7a-4779-81a5-8e4c71427fab}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {15c88cf7-cc7a-4779-81a5-8e4c71427fab}, !- Handle + Connection 2, !- Name + {7251428b-f646-45b0-a022-b321d4641574}, !- Source Object + 11, !- Outlet Port + {a602d2fd-d759-47ff-813d-8993bfce0d37}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {cf67e040-4227-47d7-b475-c1cd420904e2}, !- Handle + Port List 3, !- Name + {7251428b-f646-45b0-a022-b321d4641574}; !- HVAC Component + +OS:PortList, + {16f9f8c1-9ce7-4aec-83b9-7439500432be}, !- Handle + Port List 4, !- Name + {7251428b-f646-45b0-a022-b321d4641574}; !- HVAC Component + +OS:Sizing:Zone, + {517bf3a2-ba97-4d5f-b4b5-b5a871f61320}, !- Handle + {7251428b-f646-45b0-a022-b321d4641574}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {a89189ae-2cfa-4f4c-a098-a9f7c7ac4691}, !- Handle + Zone HVAC Equipment List 2, !- Name + {7251428b-f646-45b0-a022-b321d4641574}; !- Thermal Zone + +OS:Rendering:Color, + {da49422e-092b-416a-8509-39a0cdb1b61a}, !- Handle + Rendering Color 7, !- Name + 176, !- Rendering Red Value + 224, !- Rendering Green Value + 230; !- Rendering Blue Value + +OS:ThermalZone, + {2c85a7cb-953e-4974-985c-84ac595bf928}, !- Handle + Thermal Zone: Space 201 - Plus, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {75776004-54c5-495c-b4fa-41eb8a6da992}, !- Zone Air Inlet Port List + {ed237696-9ed5-40d9-9958-b09e1c9e88af}, !- Zone Air Exhaust Port List + {5083eeb9-9d28-4d08-addd-5f18498687a9}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {ea76d26c-f02d-412b-9d80-e9fd0d05300c}, !- Group Rendering Name + , !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {3908784f-ecf9-4797-b447-ad808c1478ea}, !- Handle + Node 3, !- Name + {5083eeb9-9d28-4d08-addd-5f18498687a9}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {5083eeb9-9d28-4d08-addd-5f18498687a9}, !- Handle + Connection 3, !- Name + {2c85a7cb-953e-4974-985c-84ac595bf928}, !- Source Object + 11, !- Outlet Port + {3908784f-ecf9-4797-b447-ad808c1478ea}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {75776004-54c5-495c-b4fa-41eb8a6da992}, !- Handle + Port List 5, !- Name + {2c85a7cb-953e-4974-985c-84ac595bf928}; !- HVAC Component + +OS:PortList, + {ed237696-9ed5-40d9-9958-b09e1c9e88af}, !- Handle + Port List 6, !- Name + {2c85a7cb-953e-4974-985c-84ac595bf928}; !- HVAC Component + +OS:Sizing:Zone, + {0327ed1f-87e5-4164-aa08-69510bde7c97}, !- Handle + {2c85a7cb-953e-4974-985c-84ac595bf928}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {43bff649-012b-4955-9fda-327de865f555}, !- Handle + Zone HVAC Equipment List 3, !- Name + {2c85a7cb-953e-4974-985c-84ac595bf928}; !- Thermal Zone + +OS:Rendering:Color, + {ea76d26c-f02d-412b-9d80-e9fd0d05300c}, !- Handle + Rendering Color 8, !- Name + 105, !- Rendering Red Value + 105, !- Rendering Green Value + 105; !- Rendering Blue Value + +OS:ThermalZone, + {a0ea8b05-8dde-4a97-b3ec-d04f6a0e3756}, !- Handle + Thermal Zone: Space 103, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {7133393d-6f77-44b4-a6eb-e55d7d5efee3}, !- Zone Air Inlet Port List + {565155ec-8d64-43ad-809d-aefa687207f4}, !- Zone Air Exhaust Port List + {41159897-10ab-4fcb-867a-d22cb097b032}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {fa3b7706-ff20-4f88-96ca-0648471ebb30}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {c0ba5df3-b5c4-4135-b6b8-21aac9958b27}, !- Handle + Node 4, !- Name + {41159897-10ab-4fcb-867a-d22cb097b032}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {41159897-10ab-4fcb-867a-d22cb097b032}, !- Handle + Connection 4, !- Name + {a0ea8b05-8dde-4a97-b3ec-d04f6a0e3756}, !- Source Object + 11, !- Outlet Port + {c0ba5df3-b5c4-4135-b6b8-21aac9958b27}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {7133393d-6f77-44b4-a6eb-e55d7d5efee3}, !- Handle + Port List 7, !- Name + {a0ea8b05-8dde-4a97-b3ec-d04f6a0e3756}; !- HVAC Component + +OS:PortList, + {565155ec-8d64-43ad-809d-aefa687207f4}, !- Handle + Port List 8, !- Name + {a0ea8b05-8dde-4a97-b3ec-d04f6a0e3756}; !- HVAC Component + +OS:Sizing:Zone, + {c63a9630-2607-45da-abb0-40349e3dc1ee}, !- Handle + {a0ea8b05-8dde-4a97-b3ec-d04f6a0e3756}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {c583e0ab-dbdb-40eb-9346-d664c1a8b188}, !- Handle + Zone HVAC Equipment List 4, !- Name + {a0ea8b05-8dde-4a97-b3ec-d04f6a0e3756}; !- Thermal Zone + +OS:ThermalZone, + {b1a43f6a-2510-4f0f-b7bc-8fa33483e05f}, !- Handle + Thermal Zone: Space 304, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {ab6ac67e-f45b-4025-ac07-079651e2310f}, !- Zone Air Inlet Port List + {31a1ee89-8279-491e-89ef-d43d9435d80c}, !- Zone Air Exhaust Port List + {2e5a2aa6-0e5c-4cbd-a36c-ef6afc5e57fc}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {b340fbb0-dffb-49c1-847d-d6f53001b31d}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {3e93a59d-aaa5-41a7-9a87-14260fd28357}, !- Handle + Node 5, !- Name + {2e5a2aa6-0e5c-4cbd-a36c-ef6afc5e57fc}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {2e5a2aa6-0e5c-4cbd-a36c-ef6afc5e57fc}, !- Handle + Connection 5, !- Name + {b1a43f6a-2510-4f0f-b7bc-8fa33483e05f}, !- Source Object + 11, !- Outlet Port + {3e93a59d-aaa5-41a7-9a87-14260fd28357}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {ab6ac67e-f45b-4025-ac07-079651e2310f}, !- Handle + Port List 9, !- Name + {b1a43f6a-2510-4f0f-b7bc-8fa33483e05f}; !- HVAC Component + +OS:PortList, + {31a1ee89-8279-491e-89ef-d43d9435d80c}, !- Handle + Port List 10, !- Name + {b1a43f6a-2510-4f0f-b7bc-8fa33483e05f}; !- HVAC Component + +OS:Sizing:Zone, + {b05cfc14-1039-4432-a0aa-9b4bab0cb00f}, !- Handle + {b1a43f6a-2510-4f0f-b7bc-8fa33483e05f}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {8b590d69-1265-4a97-ab52-40f72b5c9f15}, !- Handle + Zone HVAC Equipment List 5, !- Name + {b1a43f6a-2510-4f0f-b7bc-8fa33483e05f}; !- Thermal Zone + +OS:ThermalZone, + {488a30b0-3f5c-43fa-a2d4-15fb73ce765c}, !- Handle + Thermal Zone: Space 301, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {edd923e3-02cd-4b1b-86d3-2ac461be0d35}, !- Zone Air Inlet Port List + {1bb016f5-1cbf-4670-8e0f-29e57efaaaa9}, !- Zone Air Exhaust Port List + {6b70bd6d-7657-43d9-9dfb-ad6ba4d63d6e}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {8b21d1cf-0f9e-47c0-a092-26f787c3e57f}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {aaaccbe0-b4f9-4807-96ee-6d50f26d7575}, !- Handle + Node 6, !- Name + {6b70bd6d-7657-43d9-9dfb-ad6ba4d63d6e}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {6b70bd6d-7657-43d9-9dfb-ad6ba4d63d6e}, !- Handle + Connection 6, !- Name + {488a30b0-3f5c-43fa-a2d4-15fb73ce765c}, !- Source Object + 11, !- Outlet Port + {aaaccbe0-b4f9-4807-96ee-6d50f26d7575}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {edd923e3-02cd-4b1b-86d3-2ac461be0d35}, !- Handle + Port List 11, !- Name + {488a30b0-3f5c-43fa-a2d4-15fb73ce765c}; !- HVAC Component + +OS:PortList, + {1bb016f5-1cbf-4670-8e0f-29e57efaaaa9}, !- Handle + Port List 12, !- Name + {488a30b0-3f5c-43fa-a2d4-15fb73ce765c}; !- HVAC Component + +OS:Sizing:Zone, + {ca3cb509-aef0-4b60-86a6-9556a9a10bbb}, !- Handle + {488a30b0-3f5c-43fa-a2d4-15fb73ce765c}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {7632ffcb-a051-4a69-ab4f-fe9cab964200}, !- Handle + Zone HVAC Equipment List 6, !- Name + {488a30b0-3f5c-43fa-a2d4-15fb73ce765c}; !- Thermal Zone + +OS:ThermalZone, + {d6dd14a7-0f35-40d8-ab3b-5f2ea0733eec}, !- Handle + Thermal Zone: Space 101, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {33b2eb9c-3095-442f-91cb-335b6677eb43}, !- Zone Air Inlet Port List + {dfdf62d7-4027-4eee-a497-63acf57676e0}, !- Zone Air Exhaust Port List + {8d6dd6c8-a630-4ca1-b96d-569c556ac683}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {e88bb11f-d3b6-49d8-9d66-947685cdb150}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {5e788be9-9289-44d3-a00e-de6ca38e1870}, !- Handle + Node 7, !- Name + {8d6dd6c8-a630-4ca1-b96d-569c556ac683}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {8d6dd6c8-a630-4ca1-b96d-569c556ac683}, !- Handle + Connection 7, !- Name + {d6dd14a7-0f35-40d8-ab3b-5f2ea0733eec}, !- Source Object + 11, !- Outlet Port + {5e788be9-9289-44d3-a00e-de6ca38e1870}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {33b2eb9c-3095-442f-91cb-335b6677eb43}, !- Handle + Port List 13, !- Name + {d6dd14a7-0f35-40d8-ab3b-5f2ea0733eec}; !- HVAC Component + +OS:PortList, + {dfdf62d7-4027-4eee-a497-63acf57676e0}, !- Handle + Port List 14, !- Name + {d6dd14a7-0f35-40d8-ab3b-5f2ea0733eec}; !- HVAC Component + +OS:Sizing:Zone, + {87d2cc1e-d383-43eb-8dd6-1e86950c677b}, !- Handle + {d6dd14a7-0f35-40d8-ab3b-5f2ea0733eec}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {09a497b2-02cd-4343-992f-cdb3717dd222}, !- Handle + Zone HVAC Equipment List 7, !- Name + {d6dd14a7-0f35-40d8-ab3b-5f2ea0733eec}; !- Thermal Zone + +OS:ThermalZone, + {eef18cb7-dc4a-4ae2-bd2b-f0810a70d52d}, !- Handle + Thermal Zone: Space 102, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {78ec2641-dede-4bdc-b556-9f97cc1251c3}, !- Zone Air Inlet Port List + {d767d74a-e2a8-48a3-badd-546731500318}, !- Zone Air Exhaust Port List + {9190cb88-e20f-470b-8422-60399b0e8104}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {910fa816-5ee5-4681-a301-a36c162cccc4}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {ae27ccef-abe3-4176-8369-4f8215c1f925}, !- Handle + Node 8, !- Name + {9190cb88-e20f-470b-8422-60399b0e8104}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {9190cb88-e20f-470b-8422-60399b0e8104}, !- Handle + Connection 8, !- Name + {eef18cb7-dc4a-4ae2-bd2b-f0810a70d52d}, !- Source Object + 11, !- Outlet Port + {ae27ccef-abe3-4176-8369-4f8215c1f925}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {78ec2641-dede-4bdc-b556-9f97cc1251c3}, !- Handle + Port List 15, !- Name + {eef18cb7-dc4a-4ae2-bd2b-f0810a70d52d}; !- HVAC Component + +OS:PortList, + {d767d74a-e2a8-48a3-badd-546731500318}, !- Handle + Port List 16, !- Name + {eef18cb7-dc4a-4ae2-bd2b-f0810a70d52d}; !- HVAC Component + +OS:Sizing:Zone, + {5718f5db-1e8f-48d1-8cfa-f37c021f598a}, !- Handle + {eef18cb7-dc4a-4ae2-bd2b-f0810a70d52d}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {88a44666-6d94-4e0c-aaa5-4a912f0fc27d}, !- Handle + Zone HVAC Equipment List 8, !- Name + {eef18cb7-dc4a-4ae2-bd2b-f0810a70d52d}; !- Thermal Zone + +OS:ThermalZone, + {64154878-3721-4777-8a9f-6264c3cc4ba2}, !- Handle + Thermal Zone: Space 302, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {ba878137-003c-42f0-bbdc-255564b9b985}, !- Zone Air Inlet Port List + {e9fcd973-d7e8-41ed-993c-56212bf9ee8e}, !- Zone Air Exhaust Port List + {ba117941-8529-44be-9d61-d573d8070d73}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {d66d8496-0397-4826-9a42-a050eb30017e}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {2fe7fe5a-d6de-4434-9a71-5f74bb7b8ea0}, !- Handle + Node 9, !- Name + {ba117941-8529-44be-9d61-d573d8070d73}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {ba117941-8529-44be-9d61-d573d8070d73}, !- Handle + Connection 9, !- Name + {64154878-3721-4777-8a9f-6264c3cc4ba2}, !- Source Object + 11, !- Outlet Port + {2fe7fe5a-d6de-4434-9a71-5f74bb7b8ea0}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {ba878137-003c-42f0-bbdc-255564b9b985}, !- Handle + Port List 17, !- Name + {64154878-3721-4777-8a9f-6264c3cc4ba2}; !- HVAC Component + +OS:PortList, + {e9fcd973-d7e8-41ed-993c-56212bf9ee8e}, !- Handle + Port List 18, !- Name + {64154878-3721-4777-8a9f-6264c3cc4ba2}; !- HVAC Component + +OS:Sizing:Zone, + {2e174712-3fd9-476a-a7ee-c132262ea895}, !- Handle + {64154878-3721-4777-8a9f-6264c3cc4ba2}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {120bd5fd-9976-426c-b676-e544e2eeda3e}, !- Handle + Zone HVAC Equipment List 9, !- Name + {64154878-3721-4777-8a9f-6264c3cc4ba2}; !- Thermal Zone + +OS:ThermalZone, + {3328af8e-f3e2-4c86-b0e8-dc9e1d7ff66b}, !- Handle + Thermal Zone: Space 303, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {7658fd10-e320-4670-b760-763b8f88f89d}, !- Zone Air Inlet Port List + {7f135b15-3caa-4ac0-b528-5eca9982391b}, !- Zone Air Exhaust Port List + {f134c149-7af0-4959-94ea-0d474ac031b7}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {b44edde4-2a25-45b7-b8b6-442e58fa08f6}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {fff67412-6ac6-4722-9a20-e8f1dc492ecb}, !- Handle + Node 10, !- Name + {f134c149-7af0-4959-94ea-0d474ac031b7}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {f134c149-7af0-4959-94ea-0d474ac031b7}, !- Handle + Connection 10, !- Name + {3328af8e-f3e2-4c86-b0e8-dc9e1d7ff66b}, !- Source Object + 11, !- Outlet Port + {fff67412-6ac6-4722-9a20-e8f1dc492ecb}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {7658fd10-e320-4670-b760-763b8f88f89d}, !- Handle + Port List 19, !- Name + {3328af8e-f3e2-4c86-b0e8-dc9e1d7ff66b}; !- HVAC Component + +OS:PortList, + {7f135b15-3caa-4ac0-b528-5eca9982391b}, !- Handle + Port List 20, !- Name + {3328af8e-f3e2-4c86-b0e8-dc9e1d7ff66b}; !- HVAC Component + +OS:Sizing:Zone, + {0306d84d-f5c0-48e2-b9c1-2e7a8046c968}, !- Handle + {3328af8e-f3e2-4c86-b0e8-dc9e1d7ff66b}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {a21e2a57-be6b-4789-bf6c-80986643d72b}, !- Handle + Zone HVAC Equipment List 10, !- Name + {3328af8e-f3e2-4c86-b0e8-dc9e1d7ff66b}; !- Thermal Zone + +OS:ThermalZone, + {403b7ca0-99b3-4839-9d8d-865f3b02bc68}, !- Handle + Thermal Zone: Space 104, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {af8b8b51-8445-4af4-af26-d3aac4534457}, !- Zone Air Inlet Port List + {3993edb5-2233-460d-8c8b-814337936e91}, !- Zone Air Exhaust Port List + {d2c4735d-bca0-461f-985d-3f1d76159380}, !- Zone Air Node Name + , !- Zone Return Air Node Name + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {3f7708e6-1b6a-44ef-a321-43d9234b65cb}, !- Group Rendering Name + {c2aaaad1-85cf-4f4b-aad3-0ce8a410b6d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {4d66a6f1-48e8-4677-8742-4da77ab81c3a}, !- Handle + Node 11, !- Name + {d2c4735d-bca0-461f-985d-3f1d76159380}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {d2c4735d-bca0-461f-985d-3f1d76159380}, !- Handle + Connection 11, !- Name + {403b7ca0-99b3-4839-9d8d-865f3b02bc68}, !- Source Object + 11, !- Outlet Port + {4d66a6f1-48e8-4677-8742-4da77ab81c3a}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {af8b8b51-8445-4af4-af26-d3aac4534457}, !- Handle + Port List 21, !- Name + {403b7ca0-99b3-4839-9d8d-865f3b02bc68}; !- HVAC Component + +OS:PortList, + {3993edb5-2233-460d-8c8b-814337936e91}, !- Handle + Port List 22, !- Name + {403b7ca0-99b3-4839-9d8d-865f3b02bc68}; !- HVAC Component + +OS:Sizing:Zone, + {3564f7bd-902b-4a47-800a-ee7624c52721}, !- Handle + {403b7ca0-99b3-4839-9d8d-865f3b02bc68}, !- Zone or ZoneList Name + 14, !- Zone Cooling Design Supply Air Temperature {C} + 40, !- Zone Heating Design Supply Air Temperature {C} + 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 + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + ; !- Design Zone Air Distribution Effectiveness in Heating Mode + +OS:ZoneHVAC:EquipmentList, + {17792eec-e712-479f-89c8-80826d11a1e8}, !- Handle + Zone HVAC Equipment List 11, !- Name + {403b7ca0-99b3-4839-9d8d-865f3b02bc68}; !- Thermal Zone + +OS:Rendering:Color, + {fa3b7706-ff20-4f88-96ca-0648471ebb30}, !- Handle + Rendering Color 9, !- Name + 60, !- Rendering Red Value + 179, !- Rendering Green Value + 113; !- Rendering Blue Value + +OS:Rendering:Color, + {b340fbb0-dffb-49c1-847d-d6f53001b31d}, !- Handle + Rendering Color 10, !- Name + 135, !- Rendering Red Value + 206, !- Rendering Green Value + 250; !- Rendering Blue Value + +OS:Rendering:Color, + {8b21d1cf-0f9e-47c0-a092-26f787c3e57f}, !- Handle + Rendering Color 11, !- Name + 128, !- Rendering Red Value + 128, !- Rendering Green Value + 0; !- Rendering Blue Value + +OS:Rendering:Color, + {e88bb11f-d3b6-49d8-9d66-947685cdb150}, !- Handle + Rendering Color 12, !- Name + 60, !- Rendering Red Value + 179, !- Rendering Green Value + 113; !- Rendering Blue Value + +OS:Rendering:Color, + {910fa816-5ee5-4681-a301-a36c162cccc4}, !- Handle + Rendering Color 13, !- Name + 223, !- Rendering Red Value + 255, !- Rendering Green Value + 130, !- Rendering Blue Value + 255; !- Rendering Alpha Value + +OS:Rendering:Color, + {d66d8496-0397-4826-9a42-a050eb30017e}, !- Handle + Rendering Color 14, !- Name + 233, !- Rendering Red Value + 150, !- Rendering Green Value + 122; !- Rendering Blue Value + +OS:Rendering:Color, + {b44edde4-2a25-45b7-b8b6-442e58fa08f6}, !- Handle + Rendering Color 15, !- Name + 32, !- Rendering Red Value + 178, !- Rendering Green Value + 170; !- Rendering Blue Value + +OS:Rendering:Color, + {3f7708e6-1b6a-44ef-a321-43d9234b65cb}, !- Handle + Rendering Color 16, !- Name + 218, !- Rendering Red Value + 112, !- Rendering Green Value + 214; !- Rendering Blue Value + +OS:ClimateZones, + {05391cbe-8d3b-48b2-a01a-cb9ee275f6c6}, !- 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:RadianceParameters, + {7f737743-8745-4084-a242-865daf07da9f}, !- 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, + {b5ba1333-993c-4d87-b32f-8837419824bf}, !- Handle + 1.25, !- Heating Sizing Factor + 1.15; !- Cooling Sizing Factor + +OS:ProgramControl, + {195f5885-936a-49ba-a8d5-e7626d019d0e}; !- Handle + +OS:OutputControl:ReportingTolerances, + {40074586-0786-44c6-aadd-1729ae5e7bed}; !- Handle + +OS:ConvergenceLimits, + {a8a021e0-0dd3-46c3-b86b-333f74752bb1}; !- Handle + +OS:ShadowCalculation, + {4289aa6a-73b0-433b-9d8d-b895a1147bf5}, !- Handle + 7, !- Calculation Frequency + 15000; !- Maximum Figures in Shadow Overlap Calculations + +OS:SurfaceConvectionAlgorithm:Inside, + {e5840977-8da9-4ea8-a8b6-be082427c794}, !- Handle + TARP; !- Algorithm + +OS:SurfaceConvectionAlgorithm:Outside, + {88aee493-1eff-4284-b213-38258fc70cde}, !- Handle + DOE-2; !- Algorithm + +OS:HeatBalanceAlgorithm, + {a0546d6d-703f-4c40-bb33-173d0d9b4506}, !- Handle + ConductionTransferFunction, !- Algorithm + 200; !- Surface Temperature Upper Limit {F} + +OS:ZoneAirHeatBalanceAlgorithm, + {ed2d56e9-9ac2-4e3a-badb-46c4f0bc5684}, !- Handle + AnalyticalSolution; !- Algorithm + +OS:ZoneAirContaminantBalance, + {caa55812-a6bb-4099-b13c-2bd08e1282e4}; !- Handle + +OS:ZoneCapacitanceMultiplier:ResearchSpecial, + {318705f2-38ac-40df-a4c5-9ea50d969cbf}, !- Handle + , !- Temperature Capacity Multiplier + , !- Humidity Capacity Multiplier + ; !- Carbon Dioxide Capacity Multiplier + +OS:RunPeriod, + {b33837ca-82e8-4a4b-a29f-bf2ade54c307}, !- 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:DefaultSurfaceConstructions, + {5750823c-bae4-4180-9363-5e4bff9040b0}, ! Handle + 000 Interior DefSurfCons 1, ! Name + {07092fd3-9719-4a3a-851a-61e694c7b2e6}, ! Floor Construction Name + {e6ff48b6-cff2-4bb8-aed2-df3c527afd49}, ! Wall Construction Name + {305c1cce-364a-4113-af8d-9f7f6db58322}; ! Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {234b33fe-3dc4-4931-8dcd-974d5830fcc2}, ! Handle + 000 Ground DefSurfCons 1, ! Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Floor Construction Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}, ! Wall Construction Name + {1d2c80af-c72d-4984-bbc5-8be603c6ec72}; ! Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {53c598e6-015c-4846-b54a-9168cc613369}, ! Handle + 000 Interior DefSubCons 1, ! Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Fixed Window Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Operable Window Construction Name + {1ccc9476-7cb0-40f8-bffb-3d7f62f32c66}, ! Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Glass Door Construction Name + , ! Overhead Door Construction Name + {f65e76d6-1751-40e3-a281-c002c4db9fd2}, ! Skylight Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}, ! Tubular Daylight Dome Construction Name + {bb83a44b-32be-4dca-a9de-4f3f4996a72f}; ! Tubular Daylight Diffuser Construction Name + +OS:StandardsInformation:Construction, + {2aab25d7-24a3-4396-9a48-8b72559b0040}, !- Handle + {c0f458f6-c6a5-4b88-a3a9-d68fae9265f0}; !- Construction Name + +OS:WeatherFile, + {af4f8e62-45d6-4889-a3cc-6d37be4a4e1b}, !- Handle + Chicago Ohare Intl Ap, !- City + IL, !- State Province Region + USA, !- Country + TMY3, !- Data Source + 725300, !- WMO Number + 41.98, !- Latitude {deg} + -87.92, !- Longitude {deg} + -6, !- Time Zone {hr} + 201, !- Elevation {m} + file:files/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw, !- Url + 616D8F9A; !- Checksum + +OS:Site, + {5707ee96-9305-49c6-9d74-86fe9fa2181f}, !- Handle + Site 1, !- Name + 41.98, !- Latitude {deg} + -87.92, !- Longitude {deg} + -6, !- Time Zone {hr} + 201, !- Elevation {m} + ; !- Terrain + +OS:SizingPeriod:DesignDay, + {0dfe058a-cea4-4df2-a6bd-7a72e056b89a}, !- Handle + Chicago Ohare Intl Ap Ann Clg .4% Condns Enth=>MDB, !- Name + 31.4, !- Maximum Dry-Bulb Temperature {C} + 10.5, !- Daily Dry-Bulb Temperature Range {deltaC} + 79200, !- Humidity Indicating Conditions at Maximum Dry-Bulb {BasedOnField A3} + 98934, !- Barometric Pressure {Pa} + 5.2, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- Snow Indicator + 21, !- Day of Month + 7, !- Month + SummerDesignDay, !- Day Type + 0, !- Daylight Saving Time Indicator + Enthalpy, !- Humidity Indicating Type + , !- Humidity Indicating Day Schedule Name + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.455, !- ASHRAE Taub {dimensionless} + 2.05; !- ASHRAE Taud {dimensionless} + +OS:SizingPeriod:DesignDay, + {bd60c02f-488c-49c0-9d23-b67722672ba5}, !- Handle + Chicago Ohare Intl Ap Ann Clg .4% Condns DP=>MDB, !- Name + 28.9, !- Maximum Dry-Bulb Temperature {C} + 10.5, !- Daily Dry-Bulb Temperature Range {deltaC} + 23.8, !- Humidity Indicating Conditions at Maximum Dry-Bulb {BasedOnField A3} + 98934, !- Barometric Pressure {Pa} + 5.2, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- Snow Indicator + 21, !- Day of Month + 7, !- Month + SummerDesignDay, !- Day Type + 0, !- Daylight Saving Time Indicator + Dewpoint, !- Humidity Indicating Type + , !- Humidity Indicating Day Schedule Name + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.455, !- ASHRAE Taub {dimensionless} + 2.05; !- ASHRAE Taud {dimensionless} + +OS:SizingPeriod:DesignDay, + {6131f19b-caeb-41ba-a6d4-001e50e83da1}, !- Handle + Chicago Ohare Intl Ap Ann Htg 99.6% Condns DB, !- Name + -20, !- Maximum Dry-Bulb Temperature {C} + 0, !- Daily Dry-Bulb Temperature Range {deltaC} + -20, !- Humidity Indicating Conditions at Maximum Dry-Bulb {BasedOnField A3} + 98934, !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- 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 + +OS:SizingPeriod:DesignDay, + {1667dba9-acd7-47c0-9d7b-8ac6eb72c189}, !- Handle + Chicago Ohare Intl Ap Ann Clg .4% Condns WB=>MDB, !- Name + 31.2, !- Maximum Dry-Bulb Temperature {C} + 10.5, !- Daily Dry-Bulb Temperature Range {deltaC} + 25.5, !- Humidity Indicating Conditions at Maximum Dry-Bulb {BasedOnField A3} + 98934, !- Barometric Pressure {Pa} + 5.2, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- 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 + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.455, !- ASHRAE Taub {dimensionless} + 2.05; !- ASHRAE Taud {dimensionless} + +OS:SizingPeriod:DesignDay, + {50a6275b-aa70-45a9-a8d4-e2c2adaae7b1}, !- Handle + Chicago Ohare Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name + 33.3, !- Maximum Dry-Bulb Temperature {C} + 10.5, !- Daily Dry-Bulb Temperature Range {deltaC} + 23.7, !- Humidity Indicating Conditions at Maximum Dry-Bulb {BasedOnField A3} + 98934, !- Barometric Pressure {Pa} + 5.2, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- 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 + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.455, !- ASHRAE Taub {dimensionless} + 2.05; !- ASHRAE Taud {dimensionless} + +OS:SizingPeriod:DesignDay, + {176321f3-80a7-4357-ab67-007bf51fa466}, !- Handle + Chicago Ohare Intl Ap Ann Hum_n 99.6% Condns DP=>MCDB, !- Name + -19.2, !- Maximum Dry-Bulb Temperature {C} + 0, !- Daily Dry-Bulb Temperature Range {deltaC} + -25.7, !- Humidity Indicating Conditions at Maximum Dry-Bulb {BasedOnField A3} + 98934, !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- Snow Indicator + 21, !- Day of Month + 1, !- Month + WinterDesignDay, !- Day Type + 0, !- Daylight Saving Time Indicator + Dewpoint, !- 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 + +OS:SizingPeriod:DesignDay, + {8fe215ab-b928-46ba-a5a6-d6f9e739513d}, !- Handle + Chicago Ohare Intl Ap Ann Htg Wind 99.6% Condns WS=>MCDB, !- Name + -3.5, !- Maximum Dry-Bulb Temperature {C} + 0, !- Daily Dry-Bulb Temperature Range {deltaC} + -3.5, !- Humidity Indicating Conditions at Maximum Dry-Bulb {BasedOnField A3} + 98934, !- Barometric Pressure {Pa} + 12.4, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- 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 + diff --git a/lib/measures/vr_fwith_doas/tests/AedgOfficeHvacWshpDoas_Test.rb b/lib/measures/vr_fwith_doas/tests/AedgOfficeHvacWshpDoas_Test.rb new file mode 100644 index 0000000..6ea4c5a --- /dev/null +++ b/lib/measures/vr_fwith_doas/tests/AedgOfficeHvacWshpDoas_Test.rb @@ -0,0 +1,59 @@ +# frozen_string_literal: true + +require 'openstudio' + +require 'openstudio/ruleset/ShowRunnerOutput' + +require "#{File.dirname(__FILE__)}/../measure.rb" + +require 'test/unit' + +class AedgOfficeHvacWshpDoas_Test < Test::Unit::TestCase + def test_AedgOfficeHvacWshpDoas + # create an instance of the measure + measure = AedgOfficeHvacWshpDoas.new + + # create an instance of a runner + runner = OpenStudio::Ruleset::OSRunner.new + + # load the test model + translator = OpenStudio::OSVersion::VersionTranslator.new + path = OpenStudio::Path.new(File.dirname(__FILE__) + '/AEDG_HVAC_GenericTestModel_0225_a.osm') + model = translator.loadModel(path) + assert(!model.empty?) + model = model.get + + # get arguments and test that they are what we are expecting + arguments = measure.arguments(model) + assert_equal(3, arguments.size) + assert_equal('ceilingReturnPlenumSpaceType', arguments[0].name) + assert_equal('costTotalHVACSystem', arguments[1].name) + assert_equal('remake_schedules', arguments[2].name) + + # set argument values to good values and run the measure on model with spaces + argument_map = OpenStudio::Ruleset::OSArgumentMap.new + + ceilingReturnPlenumSpaceType = arguments[0].clone + assert(ceilingReturnPlenumSpaceType.setValue('Plenum')) + argument_map['ceilingReturnPlenumSpaceType'] = ceilingReturnPlenumSpaceType + + costTotalHVACSystem = arguments[1].clone + assert(costTotalHVACSystem.setValue(15000.0)) + argument_map['costTotalHVACSystem'] = costTotalHVACSystem + + remake_schedules = arguments[2].clone + assert(remake_schedules.setValue(true)) + argument_map['remake_schedules'] = remake_schedules + + measure.run(model, runner, argument_map) + result = runner.result + show_output(result) + assert(result.value.valueName == 'Success') + # assert(result.warnings.size == 1) + # assert(result.info.size == 2) + + # save the model for testing purposes + output_file_path = OpenStudio::Path.new(File.dirname(__FILE__) + '/test.osm') + model.save(output_file_path, true) + end +end diff --git a/lib/measures/vr_fwith_doas/tests/measure-backup-1.rb b/lib/measures/vr_fwith_doas/tests/measure-backup-1.rb new file mode 100644 index 0000000..7664027 --- /dev/null +++ b/lib/measures/vr_fwith_doas/tests/measure-backup-1.rb @@ -0,0 +1,430 @@ +# frozen_string_literal: true + +# see the URL below for information on how to write OpenStudio measures +# http://openstudio.nrel.gov/openstudio-measure-writing-guide + +# see the URL below for information on using life cycle cost objects in OpenStudio +# http://openstudio.nrel.gov/openstudio-life-cycle-examples + +# see the URL below for access to C++ documentation on model objects (click on "model" in the main window to view model objects) +# http://openstudio.nrel.gov/sites/openstudio.nrel.gov/files/nv_data/cpp_documentation_it/model/html/namespaces.html + +# load OpenStudio measure libraries +require "#{File.dirname(__FILE__)}/resources/OsLib_AedgMeasures" +require "#{File.dirname(__FILE__)}/resources/OsLib_HelperMethods" +require "#{File.dirname(__FILE__)}/resources/OsLib_HVAC" +require "#{File.dirname(__FILE__)}/resources/OsLib_Schedules" + +# start the measure +class WSHPwithDOASMoreDesignParameters < OpenStudio::Ruleset::ModelUserScript + # define the name that a user will see, this method may be deprecated as + # the display name in PAT comes from the name field in measure.xml + def name + return 'WSHPwithDOASMoreDesignParameters' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # create an argument for a space type to be used in the model, to see if one should be mapped as ceiling return air plenum + spaceTypes = model.getSpaceTypes + usedSpaceTypes_handle = OpenStudio::StringVector.new + usedSpaceTypes_displayName = OpenStudio::StringVector.new + spaceTypes.each do |spaceType| # TODO: - I need to update this to use helper so GUI sorts by display name + if !spaceType.spaces.empty? # only show space types used in the building + usedSpaceTypes_handle << spaceType.handle.to_s + usedSpaceTypes_displayName << spaceType.name.to_s + end + end + + # make an argument for space type + ceilingReturnPlenumSpaceType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('ceilingReturnPlenumSpaceType', usedSpaceTypes_handle, usedSpaceTypes_displayName, false) + ceilingReturnPlenumSpaceType.setDisplayName('This space type should be part of a ceiling return air plenum.') + # ceilingReturnPlenumSpaceType.setDefaultValue("We don't want a default, this is an optional argument") + args << ceilingReturnPlenumSpaceType + + # Heating COP of WSHP + wshpHeatingCOP = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('wshpHeatingCOP', false) + wshpHeatingCOP.setDisplayName('WSHP AHRI Heating COP') + wshpHeatingCOP.setDefaultValue(4.0) + args << wshpHeatingCOP + + # Cooling EER of WSHP + wshpCoolingEER = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('wshpCoolingEER', false) + wshpCoolingEER.setDisplayName('WSHP AHRI Cooling EER') + wshpCoolingEER.setDefaultValue(14) + args << wshpCoolingEER + + # WSHP Fan Type PSC or ECM + fanChs = OpenStudio::StringVector.new + fanChs << 'PSC' + fanChs << 'ECM' + wshpFanType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('wshpFanType', fanChs, true) # note ECM fan type may correspond to different set of heat pump performance curves + wshpFanType.setDisplayName('WSHP Fan Type: PSC or ECM?') + wshpFanType.setDefaultValue('PSC') + args << wshpFanType + + # Condenser Loop Cooling Temperature + condLoopCoolingTemp = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('condLoopCoolingTemp', false) + condLoopCoolingTemp.setDisplayName('Condenser Loop Cooling Temperature (F)') + condLoopCoolingTemp.setDefaultValue(90) + args << condLoopCoolingTemp + + # Condenser Loop Heating Temperature + condLoopHeatingTemp = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('condLoopHeatingTemp', false) + condLoopHeatingTemp.setDisplayName('Condenser Loop Heating Temperature (F)') + condLoopHeatingTemp.setDefaultValue(60) + args << condLoopHeatingTemp + + # Cooling Tower + coolingTowerWB = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('coolingTowerWB', false) + coolingTowerWB.setDisplayName('Cooling Tower Design Wet Bulb (F)') + coolingTowerWB.setDefaultValue(68) + args << coolingTowerWB + + coolingTowerApproach = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('coolingTowerApproach', false) + coolingTowerApproach.setDisplayName('Cooling Tower Design Approach (F)') + coolingTowerApproach.setDefaultValue(7.0) + args << coolingTowerApproach + + coolingTowerDeltaT = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('coolingTowerDeltaT', false) + coolingTowerDeltaT.setDisplayName('Cooling Tower Design Delta T (F)') + coolingTowerDeltaT.setDefaultValue(10.0) + args << coolingTowerDeltaT + + # Boiler Efficiency + boilerEff = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('boilerEff', false) + boilerEff.setDisplayName('Boiler Thermal Efficiency') + boilerEff.setDefaultValue(0.9) + args << boilerEff + + # Boiler fuel Type + fuelChs = OpenStudio::StringVector.new + fuelChs << 'NaturalGas' + fuelChs << 'PropaneGas' + fuelChs << 'FuelOil#1' + fuelChs << 'FuelOil#2' + fuelChs << 'Electricity' + boilerFuelType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('boilerFuelType', fuelChs, false) + boilerFuelType.setDisplayName('Boiler Fuel Type') + boilerFuelType.setDefaultValue('NaturalGas') + args << boilerFuelType + + # boiler Hot water supply temperature + boilerHWST = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('boilerHWST', false) + boilerHWST.setDisplayName('Boiler Design Heating Water Outlet Temperature (F)') + boilerHWST.setDefaultValue(120) + args << boilerHWST + + # DOAS Fan Type + doasFanChs = OpenStudio::StringVector.new + doasFanChs << 'Constant' + doasFanChs << 'Variable' + doasFanType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasFanType', doasFanChs, true) + doasFanType.setDisplayName('DOAS Fan Flow Control - Variable means DCV controls') + doasFanType.setDefaultValue('Variable') + args << doasFanType + + # DOAS Energy Recovery + ervChs = OpenStudio::StringVector.new + ervChs << 'plate w/o economizer lockout' + ervChs << 'plate w/ economizer lockout' + ervChs << 'rotary wheel w/o economizer lockout' + ervChs << 'rotary wheel w/ economizer lockout' + ervChs << 'none' + doasERV = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasERV', ervChs, true) + doasERV.setDisplayName('DOAS Energy Recovery?') + doasERV.setDefaultValue('none') + args << doasERV + + # DOAS Evaporative Cooling + evapChs = OpenStudio::StringVector.new + evapChs << 'Direct Evaporative Cooler' + evapChs << 'none' + doasEvap = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasEvap', evapChs, true) + doasEvap.setDisplayName('DOAS Direct Evaporative Cooling?') + doasEvap.setDefaultValue('none') + args << doasEvap + + # DOAS DX Cooling + doasDXEER = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('doasDXEER', false) + doasDXEER.setDisplayName('DOAS DX Cooling EER') + doasDXEER.setDefaultValue(10.0) + args << doasDXEER + + # make an argument for material and installation cost + # todo - I would like to split the costing out to the air loops weighted by area of building served vs. just sticking it on the building + costTotalHVACSystem = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('costTotalHVACSystem', true) + costTotalHVACSystem.setDisplayName('Total Cost for HVAC System ($).') + costTotalHVACSystem.setDefaultValue(0.0) + args << costTotalHVACSystem + + # make an argument to remove existing costs + remake_schedules = OpenStudio::Ruleset::OSArgument.makeBoolArgument('remake_schedules', true) + remake_schedules.setDisplayName('Apply recommended availability and ventilation schedules for air handlers?') + remake_schedules.setDefaultValue(true) + args << remake_schedules + + return args + end # end the arguments method + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + ### START INPUTS + # assign the user inputs to variables + ceilingReturnPlenumSpaceType = runner.getOptionalWorkspaceObjectChoiceValue('ceilingReturnPlenumSpaceType', user_arguments, model) + costTotalHVACSystem = runner.getDoubleArgumentValue('costTotalHVACSystem', user_arguments) + remake_schedules = runner.getBoolArgumentValue('remake_schedules', user_arguments) + + # check that spaceType was chosen and exists in model + ceilingReturnPlenumSpaceTypeCheck = OsLib_HelperMethods.checkOptionalChoiceArgFromModelObjects(ceilingReturnPlenumSpaceType, 'ceilingReturnPlenumSpaceType', 'to_SpaceType', runner, user_arguments) + ceilingReturnPlenumSpaceTypeCheck == false ? (return false) : (ceilingReturnPlenumSpaceType = ceilingReturnPlenumSpaceTypeCheck['modelObject']) + # default building/ secondary space types + standardBuildingTypeTest = ['Office'] # ML Not used yet + secondarySpaceTypeTest = [] # empty for office + primarySpaceType = 'Office' + primaryHVAC = { 'doas' => true, 'fan' => 'Variable', 'heat' => 'Gas', 'cool' => 'SingleDX' } # xf notes: need to change + secondaryHVAC = { 'fan' => 'None', 'heat' => 'None', 'cool' => 'None' } # ML not used for office; leave or empty? + zoneHVAC = 'WSHP' + chillerType = 'None' # set to none if chiller not used + radiantChillerType = 'None' # set to none if not radiant system + allHVAC = { 'primary' => primaryHVAC, 'secondary' => secondaryHVAC, 'zone' => zoneHVAC } + + wshpHeatingCOP = runner.getDoubleArgumentValue('wshpHeatingCOP', user_arguments) + wshpCoolingEER = runner.getDoubleArgumentValue('wshpCoolingEER', user_arguments) + wshpFanType = runner.getStringArgumentValue('wshpFanType', user_arguments) + condLoopCoolingTemp = runner.getDoubleArgumentValue('condLoopCoolingTemp', user_arguments) + condLoopHeatingTemp = runner.getDoubleArgumentValue('condLoopHeatingTemp', user_arguments) + coolingTowerWB = runner.getDoubleArgumentValue('coolingTowerWB', user_arguments) + coolingTowerApproach = runner.getDoubleArgumentValue('coolingTowerApproach', user_arguments) + coolingTowerDeltaT = runner.getDoubleArgumentValue('coolingTowerDeltaT', user_arguments) + boilerEff = runner.getDoubleArgumentValue('boilerEff', user_arguments) + boilerFuelType = runner.getStringArgumentValue('boilerFuelType', user_arguments) + boilerHWST = runner.getDoubleArgumentValue('boilerHWST', user_arguments) + doasFanType = runner.getStringArgumentValue('doasFanType', user_arguments) + doasERV = runner.getStringArgumentValue('doasERV', user_arguments) + doasEvap = runner.getStringArgumentValue('doasEvap', user_arguments) + doasDXEER = runner.getDoubleArgumentValue('doasDXEER', user_arguments) + + ### END INPUTS + + ### START SORT ZONES + options = { 'standardBuildingTypeTest' => standardBuildingTypeTest, # ML Not used yet + 'secondarySpaceTypeTest' => secondarySpaceTypeTest, + 'ceilingReturnPlenumSpaceType' => ceilingReturnPlenumSpaceType } + zonesSorted = OsLib_HVAC.sortZones(model, runner, options) + zonesPrimary = zonesSorted['zonesPrimary'] + zonesSecondary = zonesSorted['zonesSecondary'] + zonesPlenum = zonesSorted['zonesPlenum'] + zonesUnconditioned = zonesSorted['zonesUnconditioned'] + ### END SORT ZONES + + ### START REPORT INITIAL CONDITIONS + OsLib_HVAC.reportConditions(model, runner, 'initial') + ### END REPORT INITIAL CONDITIONS + + ### START ASSIGN HVAC SCHEDULES + options = { 'primarySpaceType' => primarySpaceType, + 'allHVAC' => allHVAC, + 'remake_schedules' => remake_schedules } + schedulesHVAC = OsLib_HVAC.assignHVACSchedules(model, runner, options) + # assign schedules + primary_SAT_schedule = schedulesHVAC['primary_sat'] + building_HVAC_schedule = schedulesHVAC['hvac'] + building_ventilation_schedule = schedulesHVAC['ventilation'] + make_hot_water_plant = false + unless schedulesHVAC['hot_water'].nil? + hot_water_setpoint_schedule = schedulesHVAC['hot_water'] + make_hot_water_plant = true + end + make_chilled_water_plant = false + unless schedulesHVAC['chilled_water'].nil? + chilled_water_setpoint_schedule = schedulesHVAC['chilled_water'] + make_chilled_water_plant = true + end + make_radiant_hot_water_plant = false + unless schedulesHVAC['radiant_hot_water'].nil? + radiant_hot_water_setpoint_schedule = schedulesHVAC['radiant_hot_water'] + make_radiant_hot_water_plant = true + end + make_radiant_chilled_water_plant = false + unless schedulesHVAC['radiant_chilled_water'].nil? + radiant_chilled_water_setpoint_schedule = schedulesHVAC['radiant_chilled_water'] + make_radiant_chilled_water_plant = true + end + unless schedulesHVAC['hp_loop'].nil? + heat_pump_loop_setpoint_schedule = schedulesHVAC['hp_loop'] + end + unless schedulesHVAC['hp_loop_cooling'].nil? + heat_pump_loop_cooling_setpoint_schedule = schedulesHVAC['hp_loop_cooling'] + end + unless schedulesHVAC['hp_loop_heating'].nil? + heat_pump_loop_heating_setpoint_schedule = schedulesHVAC['hp_loop_heating'] + end + unless schedulesHVAC['mean_radiant_heating'].nil? + mean_radiant_heating_setpoint_schedule = schedulesHVAC['mean_radiant_heating'] + end + unless schedulesHVAC['mean_radiant_cooling'].nil? + mean_radiant_cooling_setpoint_schedule = schedulesHVAC['mean_radiant_cooling'] + end + ### END ASSIGN HVAC SCHEDULES + + ### START REMOVE EQUIPMENT + OsLib_HVAC.removeEquipment(model, runner) + ### END REMOVE EQUIPMENT + + ### START CREATE NEW PLANTS + # create new plants + # hot water plant + if make_hot_water_plant + hot_water_plant = OsLib_HVAC.createHotWaterPlant(model, runner, hot_water_setpoint_schedule, 'Hot Water', boilerEff, boilerFuelType, boilerHWST) + end + # chilled water plant + if make_chilled_water_plant + chilled_water_plant = OsLib_HVAC.createChilledWaterPlant(model, runner, chilled_water_setpoint_schedule, 'Chilled Water', chillerType) + end + # radiant hot water plant + if make_radiant_hot_water_plant + radiant_hot_water_plant = OsLib_HVAC.createHotWaterPlant(model, runner, radiant_hot_water_setpoint_schedule, 'Radiant Hot Water') + end + # chilled water plant + if make_radiant_chilled_water_plant + radiant_chilled_water_plant = OsLib_HVAC.createChilledWaterPlant(model, runner, radiant_chilled_water_setpoint_schedule, 'Radiant Chilled Water', radiantChillerType) + end + # condenser loop + # need condenser loop if there is a water-cooled chiller or if there is a water source heat pump loop + options = {} + options['zoneHVAC'] = zoneHVAC + if zoneHVAC.include? 'SHP' + options['loop_setpoint_schedule'] = heat_pump_loop_setpoint_schedule + options['cooling_setpoint_schedule'] = heat_pump_loop_cooling_setpoint_schedule + options['heating_setpoint_schedule'] = heat_pump_loop_heating_setpoint_schedule + end + condenserLoops = OsLib_HVAC.createCondenserLoop(model, runner, options, boilerEff, boilerFuelType, boilerHWST, coolingTowerWB, coolingTowerApproach, coolingTowerDeltaT, condLoopCoolingTemp, condLoopHeatingTemp) + unless condenserLoops['condenser_loop'].nil? + condenser_loop = condenserLoops['condenser_loop'] + end + unless condenserLoops['heat_pump_loop'].nil? + heat_pump_loop = condenserLoops['heat_pump_loop'] + end + ### END CREATE NEW PLANTS + + ### START CREATE PRIMARY AIRLOOPS + # populate inputs hash for create primary airloops method + options = {} + options['zonesPrimary'] = zonesPrimary + options['primaryHVAC'] = primaryHVAC + options['zoneHVAC'] = zoneHVAC + if primaryHVAC['doas'] + options['hvac_schedule'] = building_ventilation_schedule + options['ventilation_schedule'] = building_ventilation_schedule + else + # primary HVAC is multizone VAV + if zoneHVAC == 'DualDuct' + # primary system is a multizone VAV that cools only (primary system ventilation schedule is set to always off; hvac set to always on) + options['hvac_schedule'] = model.alwaysOnDiscreteSchedule + else + # primary system is multizone VAV that cools and ventilates + options['hvac_schedule'] = building_HVAC_schedule + options['ventilation_schedule'] = building_ventilation_schedule + end + end + options['primary_sat_schedule'] = primary_SAT_schedule + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + primary_airloops = OsLib_HVAC.createPrimaryAirLoops(model, runner, options, doasFanType, doasERV, doasEvap, doasDXEER) + ### END CREATE PRIMARY AIRLOOPS + + ### START CREATE SECONDARY AIRLOOPS + # populate inputs hash for create primary airloops method + options = {} + options['zonesSecondary'] = zonesSecondary + options['secondaryHVAC'] = secondaryHVAC + options['hvac_schedule'] = building_HVAC_schedule + options['ventilation_schedule'] = building_ventilation_schedule + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + secondary_airloops = OsLib_HVAC.createSecondaryAirLoops(model, runner, options) + ### END CREATE SECONDARY AIRLOOPS + + ### START ASSIGN PLENUMS + options = { 'zonesPrimary' => zonesPrimary, 'zonesPlenum' => zonesPlenum } + zone_plenum_hash = OsLib_HVAC.validateAndAddPlenumZonesToSystem(model, runner, options) + ### END ASSIGN PLENUMS + + ### START CREATE PRIMARY ZONE EQUIPMENT + options = {} + options['zonesPrimary'] = zonesPrimary + options['zoneHVAC'] = zoneHVAC + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + if zoneHVAC.include? 'SHP' + options['heat_pump_loop'] = heat_pump_loop + end + if zoneHVAC == 'DualDuct' + options['ventilation_schedule'] = building_ventilation_schedule + end + if zoneHVAC == 'Radiant' + options['radiant_hot_water_plant'] = radiant_hot_water_plant + options['radiant_chilled_water_plant'] = radiant_chilled_water_plant + options['mean_radiant_heating_setpoint_schedule'] = mean_radiant_heating_setpoint_schedule + options['mean_radiant_cooling_setpoint_schedule'] = mean_radiant_cooling_setpoint_schedule + end + OsLib_HVAC.createPrimaryZoneEquipment(model, runner, options, wshpCoolingEER, wshpHeatingCOP, wshpFanType) + ### END CREATE PRIMARY ZONE EQUIPMENT + + # START ADD DCV + options = {} + unless zoneHVAC == 'DualDuct' + options['primary_airloops'] = primary_airloops + end + options['secondary_airloops'] = secondary_airloops + options['allHVAC'] = allHVAC + OsLib_HVAC.addDCV(model, runner, options) + # END ADD DCV + + # TODO: - add in lifecycle costs + expected_life = 25 + years_until_costs_start = 0 + costHVAC = costTotalHVACSystem + lcc_mat = OpenStudio::Model::LifeCycleCost.createLifeCycleCost('HVAC System', model.getBuilding, costHVAC, 'CostPerEach', 'Construction', expected_life, years_until_costs_start).get + + # # # # add AEDG tips + aedgTips = ['HV04', 'HV10', 'HV12'] + + # populate how to tip messages + aedgTipsLong = OsLib_AedgMeasures.getLongHowToTips('SmMdOff', aedgTips.uniq.sort, runner) + if !aedgTipsLong + return false # this should only happen if measure writer passes bad values to getLongHowToTips + end + + ### START REPORT FINAL CONDITIONS + OsLib_HVAC.reportConditions(model, runner, 'final') + ### END REPORT FINAL CONDITIONS + + return true + end # end the run method +end # end the measure + +# this allows the measure to be used by the application +WSHPwithDOASMoreDesignParameters.new.registerWithApplication diff --git a/lib/measures/vr_fwith_doas/tests/measure-backup.rb b/lib/measures/vr_fwith_doas/tests/measure-backup.rb new file mode 100644 index 0000000..dfbceac --- /dev/null +++ b/lib/measures/vr_fwith_doas/tests/measure-backup.rb @@ -0,0 +1,432 @@ +# frozen_string_literal: true + +# see the URL below for information on how to write OpenStudio measures +# http://openstudio.nrel.gov/openstudio-measure-writing-guide + +# see the URL below for information on using life cycle cost objects in OpenStudio +# http://openstudio.nrel.gov/openstudio-life-cycle-examples + +# see the URL below for access to C++ documentation on model objects (click on "model" in the main window to view model objects) +# http://openstudio.nrel.gov/sites/openstudio.nrel.gov/files/nv_data/cpp_documentation_it/model/html/namespaces.html + +# load OpenStudio measure libraries +# require "#{File.dirname(__FILE__)}/resources/OsLib_AedgMeasures" +require "#{File.dirname(__FILE__)}/resources/OsLib_HelperMethods" +require "#{File.dirname(__FILE__)}/resources/OsLib_HVAC" +require "#{File.dirname(__FILE__)}/resources/OsLib_Schedules" + +# start the measure +class WSHPwithDOASMoreDesignParameters < OpenStudio::Ruleset::ModelUserScript + # define the name that a user will see, this method may be deprecated as + # the display name in PAT comes from the name field in measure.xml + def name + return 'WSHPwithDOASMoreDesignParameters' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Ruleset::OSArgumentVector.new + + # create an argument for a space type to be used in the model, to see if one should be mapped as ceiling return air plenum + spaceTypes = model.getSpaceTypes + usedSpaceTypes_handle = OpenStudio::StringVector.new + usedSpaceTypes_displayName = OpenStudio::StringVector.new + spaceTypes.each do |spaceType| # TODO: - I need to update this to use helper so GUI sorts by display name + if !spaceType.spaces.empty? # only show space types used in the building + usedSpaceTypes_handle << spaceType.handle.to_s + usedSpaceTypes_displayName << spaceType.name.to_s + end + end + + # make an argument for space type + ceilingReturnPlenumSpaceType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('ceilingReturnPlenumSpaceType', usedSpaceTypes_handle, usedSpaceTypes_displayName, false) + ceilingReturnPlenumSpaceType.setDisplayName('This space type should be part of a ceiling return air plenum.') + # ceilingReturnPlenumSpaceType.setDefaultValue("We don't want a default, this is an optional argument") + args << ceilingReturnPlenumSpaceType + + # Heating COP of WSHP + wshpHeatingCOP = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('wshpHeatingCOP', false) + wshpHeatingCOP.setDisplayName('WSHP AHRI Heating COP') + wshpHeatingCOP.setDefaultValue(4.0) + args << wshpHeatingCOP + + # Cooling EER of WSHP + wshpCoolingEER = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('wshpCoolingEER', false) + wshpCoolingEER.setDisplayName('WSHP AHRI Cooling EER') + wshpCoolingEER.setDefaultValue(14) + args << wshpCoolingEER + + # WSHP Fan Type PSC or ECM + fanChs = OpenStudio::StringVector.new + fanChs << 'PSC' + fanChs << 'ECM' + wshpFanType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('wshpFanType', fanChs, true) # note ECM fan type may correspond to different set of heat pump performance curves + wshpFanType.setDisplayName('WSHP Fan Type: PSC or ECM?') + wshpFanType.setDefaultValue('PSC') + args << wshpFanType + + # Condenser Loop Cooling Temperature + condLoopCoolingTemp = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('condLoopCoolingTemp', false) + condLoopCoolingTemp.setDisplayName('Condenser Loop Cooling Temperature (F)') + condLoopCoolingTemp.setDefaultValue(90) + args << condLoopCoolingTemp + + # Condenser Loop Heating Temperature + condLoopHeatingTemp = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('condLoopHeatingTemp', false) + condLoopHeatingTemp.setDisplayName('Condenser Loop Heating Temperature (F)') + condLoopHeatingTemp.setDefaultValue(60) + args << condLoopHeatingTemp + + # Cooling Tower + coolingTowerWB = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('coolingTowerWB', false) + coolingTowerWB.setDisplayName('Cooling Tower Design Wet Bulb (F)') + coolingTowerWB.setDefaultValue(68) + args << coolingTowerWB + + coolingTowerApproach = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('coolingTowerApproach', false) + coolingTowerApproach.setDisplayName('Cooling Tower Design Approach (F)') + coolingTowerApproach.setDefaultValue(7.0) + args << coolingTowerApproach + + coolingTowerDeltaT = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('coolingTowerDeltaT', false) + coolingTowerDeltaT.setDisplayName('Cooling Tower Design Delta T (F)') + coolingTowerDeltaT.setDefaultValue(10.0) + args << coolingTowerDeltaT + + # Boiler Efficiency + boilerEff = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('boilerEff', false) + boilerEff.setDisplayName('Boiler Thermal Efficiency') + boilerEff.setDefaultValue(0.9) + args << boilerEff + + # Boiler fuel Type + fuelChs = OpenStudio::StringVector.new + fuelChs << 'NaturalGas' + fuelChs << 'PropaneGas' + fuelChs << 'FuelOil#1' + fuelChs << 'FuelOil#2' + fuelChs << 'Electricity' + boilerFuelType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('boilerFuelType', fuelChs, false) + boilerFuelType.setDisplayName('Boiler Fuel Type') + boilerFuelType.setDefaultValue('NaturalGas') + args << boilerFuelType + + # boiler Hot water supply temperature + boilerHWST = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('boilerHWST', false) + boilerHWST.setDisplayName('Boiler Design Heating Water Outlet Temperature (F)') + boilerHWST.setDefaultValue(120) + args << boilerHWST + + # DOAS Fan Type + doasFanChs = OpenStudio::StringVector.new + doasFanChs << 'Constant' + doasFanChs << 'Variable' + doasFanType = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasFanType', doasFanChs, true) + doasFanType.setDisplayName('DOAS Fan Flow Control - Variable means DCV controls') + doasFanType.setDefaultValue('Variable') + args << doasFanType + + # DOAS Energy Recovery + ervChs = OpenStudio::StringVector.new + ervChs << 'plate w/o economizer lockout' + ervChs << 'plate w/ economizer lockout' + ervChs << 'rotary wheel w/o economizer lockout' + ervChs << 'rotary wheel w/ economizer lockout' + ervChs << 'none' + doasERV = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasERV', ervChs, true) + doasERV.setDisplayName('DOAS Energy Recovery?') + doasERV.setDefaultValue('none') + args << doasERV + + # DOAS Evaporative Cooling + evapChs = OpenStudio::StringVector.new + evapChs << 'Direct Evaporative Cooler' + evapChs << 'none' + doasEvap = OpenStudio::Ruleset::OSArgument.makeChoiceArgument('doasEvap', evapChs, true) + doasEvap.setDisplayName('DOAS Direct Evaporative Cooling?') + doasEvap.setDefaultValue('none') + args << doasEvap + + # DOAS DX Cooling + doasDXEER = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('doasDXEER', false) + doasDXEER.setDisplayName('DOAS DX Cooling EER') + doasDXEER.setDefaultValue(10.0) + args << doasDXEER + + # make an argument for material and installation cost + # todo - I would like to split the costing out to the air loops weighted by area of building served vs. just sticking it on the building + costTotalHVACSystem = OpenStudio::Ruleset::OSArgument.makeDoubleArgument('costTotalHVACSystem', true) + costTotalHVACSystem.setDisplayName('Total Cost for HVAC System ($).') + costTotalHVACSystem.setDefaultValue(0.0) + args << costTotalHVACSystem + + # make an argument to remove existing costs + remake_schedules = OpenStudio::Ruleset::OSArgument.makeBoolArgument('remake_schedules', true) + remake_schedules.setDisplayName('Apply recommended availability and ventilation schedules for air handlers?') + remake_schedules.setDefaultValue(true) + args << remake_schedules + + return args + end # end the arguments method + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + wshpHeatingCOP = runner.getDoubleArgumentValue('wshpHeatingCOP', user_arguments) + wshpCoolingEER = runner.getDoubleArgumentValue('wshpCoolingEER', user_arguments) + wshpFanType = runner.getStringArgumentValue('wshpFanType', user_arguments) + condLoopCoolingTemp = runner.getDoubleArgumentValue('condLoopCoolingTemp', user_arguments) + condLoopHeatingTemp = runner.getDoubleArgumentValue('condLoopHeatingTemp', user_arguments) + coolingTowerWB = runner.getDoubleArgumentValue('coolingTowerWB', user_arguments) + coolingTowerApproach = runner.getDoubleArgumentValue('coolingTowerApproach', user_arguments) + coolingTowerDeltaT = runner.getDoubleArgumentValue('coolingTowerDeltaT', user_arguments) + boilerEff = runner.getDoubleArgumentValue('boilerEff', user_arguments) + boilerFuelType = runner.getStringArgumentValue('boilerFuelType', user_arguments) + boilerHWST = runner.getDoubleArgumentValue('boilerHWST', user_arguments) + doasFanType = runner.getStringArgumentValue('doasFanType', user_arguments) + doasERV = runner.getStringArgumentValue('doasERV', user_arguments) + doasEvap = runner.getStringArgumentValue('doasEvap', user_arguments) + doasDXEER = runner.getDoubleArgumentValue('doasDXEER', user_arguments) + + ### START INPUTS + # assign the user inputs to variables + ceilingReturnPlenumSpaceType = runner.getOptionalWorkspaceObjectChoiceValue('ceilingReturnPlenumSpaceType', user_arguments, model) + costTotalHVACSystem = runner.getDoubleArgumentValue('costTotalHVACSystem', user_arguments) + remake_schedules = runner.getBoolArgumentValue('remake_schedules', user_arguments) + # check that spaceType was chosen and exists in model + ceilingReturnPlenumSpaceTypeCheck = OsLib_HelperMethods.checkOptionalChoiceArgFromModelObjects(ceilingReturnPlenumSpaceType, 'ceilingReturnPlenumSpaceType', 'to_SpaceType', runner, user_arguments) + ceilingReturnPlenumSpaceTypeCheck == false ? (return false) : (ceilingReturnPlenumSpaceType = ceilingReturnPlenumSpaceTypeCheck['modelObject']) + # default building/ secondary space types + standardBuildingTypeTest = ['Office'] # ML Not used yet + secondarySpaceTypeTest = [] # empty for office + primarySpaceType = 'Office' + if doasFanType == 'Variable' + primaryHVAC = { 'doas' => true, 'fan' => 'Variable', 'heat' => 'Gas', 'cool' => 'SingleDX' } + else + primaryHVAC = { 'doas' => true, 'fan' => 'Constant', 'heat' => 'Gas', 'cool' => 'SingleDX' } + end + secondaryHVAC = { 'fan' => 'None', 'heat' => 'None', 'cool' => 'None' } # ML not used for office; leave or empty? + zoneHVAC = 'WSHP' + chillerType = 'None' # set to none if chiller not used + radiantChillerType = 'None' # set to none if not radiant system + allHVAC = { 'primary' => primaryHVAC, 'secondary' => secondaryHVAC, 'zone' => zoneHVAC } + + ### END INPUTS + + ### START SORT ZONES + options = { 'standardBuildingTypeTest' => standardBuildingTypeTest, # ML Not used yet + 'secondarySpaceTypeTest' => secondarySpaceTypeTest, + 'ceilingReturnPlenumSpaceType' => ceilingReturnPlenumSpaceType } + zonesSorted = OsLib_HVAC.sortZones(model, runner, options) + zonesPrimary = zonesSorted['zonesPrimary'] + zonesSecondary = zonesSorted['zonesSecondary'] + zonesPlenum = zonesSorted['zonesPlenum'] + zonesUnconditioned = zonesSorted['zonesUnconditioned'] + ### END SORT ZONES + + ### START REPORT INITIAL CONDITIONS + OsLib_HVAC.reportConditions(model, runner, 'initial') + ### END REPORT INITIAL CONDITIONS + + ### START ASSIGN HVAC SCHEDULES + options = { 'primarySpaceType' => primarySpaceType, + 'allHVAC' => allHVAC, + 'remake_schedules' => remake_schedules } + schedulesHVAC = OsLib_HVAC.assignHVACSchedules(model, runner, options) + # assign schedules + primary_SAT_schedule = schedulesHVAC['primary_sat'] + building_HVAC_schedule = schedulesHVAC['hvac'] + building_ventilation_schedule = schedulesHVAC['ventilation'] + make_hot_water_plant = false + unless schedulesHVAC['hot_water'].nil? + hot_water_setpoint_schedule = schedulesHVAC['hot_water'] + make_hot_water_plant = true + end + make_chilled_water_plant = false + unless schedulesHVAC['chilled_water'].nil? + chilled_water_setpoint_schedule = schedulesHVAC['chilled_water'] + make_chilled_water_plant = true + end + make_radiant_hot_water_plant = false + unless schedulesHVAC['radiant_hot_water'].nil? + radiant_hot_water_setpoint_schedule = schedulesHVAC['radiant_hot_water'] + make_radiant_hot_water_plant = true + end + make_radiant_chilled_water_plant = false + unless schedulesHVAC['radiant_chilled_water'].nil? + radiant_chilled_water_setpoint_schedule = schedulesHVAC['radiant_chilled_water'] + make_radiant_chilled_water_plant = true + end + unless schedulesHVAC['hp_loop'].nil? + heat_pump_loop_setpoint_schedule = schedulesHVAC['hp_loop'] + end + unless schedulesHVAC['hp_loop_cooling'].nil? + heat_pump_loop_cooling_setpoint_schedule = schedulesHVAC['hp_loop_cooling'] + end + unless schedulesHVAC['hp_loop_heating'].nil? + heat_pump_loop_heating_setpoint_schedule = schedulesHVAC['hp_loop_heating'] + end + unless schedulesHVAC['mean_radiant_heating'].nil? + mean_radiant_heating_setpoint_schedule = schedulesHVAC['mean_radiant_heating'] + end + unless schedulesHVAC['mean_radiant_cooling'].nil? + mean_radiant_cooling_setpoint_schedule = schedulesHVAC['mean_radiant_cooling'] + end + ### END ASSIGN HVAC SCHEDULES + + ### START REMOVE EQUIPMENT + OsLib_HVAC.removeEquipment(model, runner) + ### END REMOVE EQUIPMENT + + ### START CREATE NEW PLANTS + # create new plants + # hot water plant + if make_hot_water_plant + hot_water_plant = OsLib_HVAC.createHotWaterPlant(model, runner, hot_water_setpoint_schedule, 'Hot Water', boilerEff, boilerFuelType, boilerHWST) + end + # chilled water plant + if make_chilled_water_plant + chilled_water_plant = OsLib_HVAC.createChilledWaterPlant(model, runner, chilled_water_setpoint_schedule, 'Chilled Water', chillerType) + end + # radiant hot water plant + if make_radiant_hot_water_plant + radiant_hot_water_plant = OsLib_HVAC.createHotWaterPlant(model, runner, radiant_hot_water_setpoint_schedule, 'Radiant Hot Water') + end + # chilled water plant + if make_radiant_chilled_water_plant + radiant_chilled_water_plant = OsLib_HVAC.createChilledWaterPlant(model, runner, radiant_chilled_water_setpoint_schedule, 'Radiant Chilled Water', radiantChillerType) + end + # condenser loop + # need condenser loop if there is a water-cooled chiller or if there is a water source heat pump loop + options = {} + options['zoneHVAC'] = zoneHVAC + if zoneHVAC.include? 'SHP' + options['loop_setpoint_schedule'] = heat_pump_loop_setpoint_schedule + options['cooling_setpoint_schedule'] = heat_pump_loop_cooling_setpoint_schedule + options['heating_setpoint_schedule'] = heat_pump_loop_heating_setpoint_schedule + end + condenserLoops = OsLib_HVAC.createCondenserLoop(model, runner, options, boilerEff, boilerFuelType, boilerHWST, coolingTowerWB, coolingTowerApproach, coolingTowerDeltaT, condLoopCoolingTemp, condLoopHeatingTemp) + unless condenserLoops['condenser_loop'].nil? + condenser_loop = condenserLoops['condenser_loop'] + end + unless condenserLoops['heat_pump_loop'].nil? + heat_pump_loop = condenserLoops['heat_pump_loop'] + end + ### END CREATE NEW PLANTS + + ### START CREATE PRIMARY AIRLOOPS + # populate inputs hash for create primary airloops method + options = {} + options['zonesPrimary'] = zonesPrimary + options['primaryHVAC'] = primaryHVAC + options['zoneHVAC'] = zoneHVAC + if primaryHVAC['doas'] + options['hvac_schedule'] = building_ventilation_schedule + options['ventilation_schedule'] = building_ventilation_schedule + else + # primary HVAC is multizone VAV + if zoneHVAC == 'DualDuct' + # primary system is a multizone VAV that cools only (primary system ventilation schedule is set to always off; hvac set to always on) + options['hvac_schedule'] = model.alwaysOnDiscreteSchedule + else + # primary system is multizone VAV that cools and ventilates + options['hvac_schedule'] = building_HVAC_schedule + options['ventilation_schedule'] = building_ventilation_schedule + end + end + options['primary_sat_schedule'] = primary_SAT_schedule + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + primary_airloops = OsLib_HVAC.createPrimaryAirLoops(model, runner, options, doasFanType, doasERV, doasEvap, doasDXEER) + ### END CREATE PRIMARY AIRLOOPS + + ### START CREATE SECONDARY AIRLOOPS + # populate inputs hash for create primary airloops method + options = {} + options['zonesSecondary'] = zonesSecondary + options['secondaryHVAC'] = secondaryHVAC + options['hvac_schedule'] = building_HVAC_schedule + options['ventilation_schedule'] = building_ventilation_schedule + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + secondary_airloops = OsLib_HVAC.createSecondaryAirLoops(model, runner, options) + ### END CREATE SECONDARY AIRLOOPS + + ### START ASSIGN PLENUMS + options = { 'zonesPrimary' => zonesPrimary, 'zonesPlenum' => zonesPlenum } + zone_plenum_hash = OsLib_HVAC.validateAndAddPlenumZonesToSystem(model, runner, options) + ### END ASSIGN PLENUMS + + ### START CREATE PRIMARY ZONE EQUIPMENT + options = {} + options['zonesPrimary'] = zonesPrimary + options['zoneHVAC'] = zoneHVAC + if make_hot_water_plant + options['hot_water_plant'] = hot_water_plant + end + if make_chilled_water_plant + options['chilled_water_plant'] = chilled_water_plant + end + if zoneHVAC.include? 'SHP' + options['heat_pump_loop'] = heat_pump_loop + end + if zoneHVAC == 'DualDuct' + options['ventilation_schedule'] = building_ventilation_schedule + end + if zoneHVAC == 'Radiant' + options['radiant_hot_water_plant'] = radiant_hot_water_plant + options['radiant_chilled_water_plant'] = radiant_chilled_water_plant + options['mean_radiant_heating_setpoint_schedule'] = mean_radiant_heating_setpoint_schedule + options['mean_radiant_cooling_setpoint_schedule'] = mean_radiant_cooling_setpoint_schedule + end + OsLib_HVAC.createPrimaryZoneEquipment(model, runner, options, wshpCoolingEER, wshpHeatingCOP, wshpFanType) + ### END CREATE PRIMARY ZONE EQUIPMENT + + # START ADD DCV + options = {} + unless zoneHVAC == 'DualDuct' + options['primary_airloops'] = primary_airloops + end + options['secondary_airloops'] = secondary_airloops + options['allHVAC'] = allHVAC + OsLib_HVAC.addDCV(model, runner, options) + # END ADD DCV + + # TODO: - add in lifecycle costs + expected_life = 25 + years_until_costs_start = 0 + costHVAC = costTotalHVACSystem + lcc_mat = OpenStudio::Model::LifeCycleCost.createLifeCycleCost('HVAC System', model.getBuilding, costHVAC, 'CostPerEach', 'Construction', expected_life, years_until_costs_start).get + + # # add AEDG tips + # aedgTips = ["HV04","HV10","HV12"] + + # # populate how to tip messages + # aedgTipsLong = OsLib_AedgMeasures.getLongHowToTips("SmMdOff",aedgTips.uniq.sort,runner) + # if not aedgTipsLong + # return false # this should only happen if measure writer passes bad values to getLongHowToTips + # end + + ### START REPORT FINAL CONDITIONS + OsLib_HVAC.reportConditions(model, runner, 'final') + ### END REPORT FINAL CONDITIONS + + return true + end # end the run method +end # end the measure + +# this allows the measure to be used by the application +WSHPwithDOASMoreDesignParameters.new.registerWithApplication diff --git a/lib/openstudio/ee_measures/version.rb b/lib/openstudio/ee_measures/version.rb index 275348f..1b4bc8d 100644 --- a/lib/openstudio/ee_measures/version.rb +++ b/lib/openstudio/ee_measures/version.rb @@ -37,6 +37,6 @@ module OpenStudio module EeMeasures - VERSION = '0.2.0'.freeze + VERSION = '0.2.1' end end diff --git a/openstudio-ee.gemspec b/openstudio-ee.gemspec index 2bef618..8957027 100644 --- a/openstudio-ee.gemspec +++ b/openstudio-ee.gemspec @@ -1,3 +1,5 @@ +# frozen_string_literal: true + lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'openstudio/ee_measures/version' @@ -12,10 +14,10 @@ Gem::Specification.new do |spec| spec.summary = 'Library and measures for OpenStudio for energy efficiency use cases' spec.description = 'Library and measures for OpenStudio for energy efficiency use cases' spec.metadata = { - 'bug_tracker_uri' => 'https://github.com/NREL/openstudio-ee-gem/issues', - 'changelog_uri' => 'https://github.com/NREL/openstudio-ee-gem/blob/develop/CHANGELOG.md', - # 'documentation_uri' => 'https://www.rubydoc.info/gems/openstudio-ee-gem/#{gem.version}', - 'source_code_uri' => "https://github.com/NREL/openstudio-ee-gem/tree/v#{spec.version}" + 'bug_tracker_uri' => 'https://github.com/NREL/openstudio-ee-gem/issues', + 'changelog_uri' => 'https://github.com/NREL/openstudio-ee-gem/blob/develop/CHANGELOG.md', + # 'documentation_uri' => 'https://www.rubydoc.info/gems/openstudio-ee-gem/#{gem.version}', + 'source_code_uri' => "https://github.com/NREL/openstudio-ee-gem/tree/v#{spec.version}" } spec.files = `git ls-files -z`.split("\x0").reject do |f| @@ -28,7 +30,7 @@ Gem::Specification.new do |spec| spec.required_ruby_version = '~> 2.5.0' spec.add_dependency 'bundler', '~> 2.1' - spec.add_dependency 'openstudio-extension', '~> 0.2.3' + spec.add_dependency 'openstudio-extension', '~> 0.2.5' spec.add_dependency 'openstudio-standards', '~> 0.2.11' spec.add_development_dependency 'rake', '~> 13.0'